/*
Theme Name: DiscoverTrips
Theme URI: https://discovertrips.in
Author: DiscoverTrips
Author URI: https://discovertrips.in
Description: A modern travel and tour booking WordPress theme for DiscoverTrips. Supports Gutenberg Block Editor, custom post types for tours and car rentals, and fully responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: discovertrips
Tags: travel, tours, booking, one-column, two-columns, right-sidebar, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, block-styles, wide-blocks, block-editor-style

This theme, like WordPress, is licensed under the GPL.
*/

/* =========================================================
   1. BASE VARIABLES & RESET
========================================================= */
:root {
    --primary: #f24e41;
    --success: #2e7d32; 
    --danger: #c62828;  
    --bg-body: #ffffff;
    --bg-section: #f0f2f5; 
    --bg-white: #ffffff;
    --text-dark: #222;
    --text-gray: #666;
    --text-light: #fff;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-sticky: 0 -4px 20px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* =========================================================
   2. HEADER & NAVIGATION
========================================================= */
header {
    position: relative;
    padding: 20px 0 80px; 
    color: var(--text-light);
}

.header-bg-collage {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    z-index: -2;
    overflow: hidden;
}

.header-bg-collage .pane {
    flex: 1;
    width: 25%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.header-bg-collage .pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 15px;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.logo a {
	font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    flex-shrink: 0;
	text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.nav-menu a {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* === Buttons & Controls === */
.call-btn {
    background: var(--primary);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.call-btn:hover {
    transform: scale(1.03);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: var(--text-light);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s ease;
}

.btn-full:hover {
    background: #d32f2f;
}

.btn-book {
    background: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

/* === Hamburger Icon Animations === */
#menu-checkbox { display: none; }

.hamburger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 110;
    flex-shrink: 0;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
    transform-origin: center;
}

#menu-checkbox:checked ~ .nav-right-actions .hamburger-icon span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#menu-checkbox:checked ~ .nav-right-actions .hamburger-icon span:nth-child(2) { opacity: 0; transform: scale(0); }
#menu-checkbox:checked ~ .nav-right-actions .hamburger-icon span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* =========================================================
   3. GENERAL LAYOUT WRAPPERS
========================================================= */
.section-wrapper {
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.01);
    position: relative;
    z-index: 1; 
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

h3.block-title {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #111;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
    display: inline-block;
}


/* =========================================================
   4. HOME PAGE & LISTING GRIDS
========================================================= */

/* Car Cards */
.car-grid, .grid-fixed-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.car-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.car-img-wrapper {
    width: 45%;
    height: 140px;
    position: relative;
    background-color: #eaeaea;
}

.car-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.car-img-wrapper::after {
    content: ''; position: absolute; top: -10%; right: -30px;
    width: 40px; height: 120%; background: var(--bg-white); border-radius: 50%;
}

.car-info { padding: 15px 20px; flex: 1; position: relative; z-index: 2; }
.car-info h4 { font-size: 16px; margin-bottom: 4px; }
.car-info p { font-size: 12px; color: var(--text-gray); margin-bottom: 4px; }
.car-price { font-size: 12px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }

/* Destinations */
.dest-grid-7 { display: grid; grid-template-columns: repeat(7, 1fr); gap: 15px; }
.dest-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.dest-grid-4 {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 15px;
	}
.dest-card {
    border-radius: var(--radius-md); overflow: hidden; position: relative;
    box-shadow: var(--shadow-sm); background-color: #eaeaea;
}

.dest-grid-7 .dest-card { aspect-ratio: 1 / 1; }
.dest-grid-5 .dest-card { aspect-ratio: 3 / 4; }
.dest-grid-4 .dest-card { aspect-ratio: 3 / 4; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.dest-card:hover img { transform: scale(1.05); }

.dest-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 15px 12px;
   	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), #0000004f);
    color: var(--text-light);
    border-radius: 8px;
}
.dest-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.dest-info p { font-size: 14px; font-weight: 700; }

/* Tours */
.tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 320px; gap: 15px; grid-auto-flow: dense; }
.tour-card { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); background-color: #eaeaea; }
.tour-card.wide { grid-column: span 2; }
.tour-card.tall { grid-row: span 2; }
.tour-card img { width: 100%; height: 100%; object-fit: cover; }
.tour-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 20px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), #0000004f); color: var(--text-light);
}
.tour-info h4 { font-size: 16px; margin-bottom: 4px; }
.tour-info p { font-size: 12px; color: #4dabf7; font-weight: 600; }

/* Listing Pages Details */
.listing-card { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.2s ease; }
.listing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.listing-img { width: 100%; height: 180px; object-fit: cover; background-color: #eaeaea; }
.listing-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.listing-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); line-height: 1.3; }
.listing-price { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.listing-summary { font-size: 13px; color: var(--text-gray); margin-bottom: 15px; line-height: 1.5; }
.listing-points { font-size: 13px; color: var(--text-dark); margin-bottom: 20px; padding-left: 18px; line-height: 1.6; }
.listing-points li { margin-bottom: 4px; }
.listing-footer { margin-top: auto; }


/* =========================================================
   5. DETAILS PAGE (TOURS & CARS)
========================================================= */
.details-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    align-items: start;
}

        /* === Main Content Collage Styling (3 Images) === */
        .tour-hero-collage {
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 8px;
            width: 100%;
            height: 400px;
            margin-bottom: 25px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .tour-hero-collage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #eaeaea;
        }

        .tour-hero-collage .main-img {
            grid-row: 1 / -1; /* Spans both rows on the left */
        }
		

.tour-hero-img, .car-hero-img {
    width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 25px; box-shadow: var(--shadow-sm); background-color: #eaeaea;
}
.tour-hero-img{
    object-fit: fill;
}
.tour-header h1, .car-header h1 { font-size: 28px; color: var(--text-dark); margin-bottom: 5px; line-height: 1.2; }
.tour-meta, .car-meta { font-size: 14px; color: var(--text-gray); margin-bottom: 25px; font-weight: 500; }
.car-meta { display: flex; flex-wrap: wrap; gap: 15px; }
.car-meta span { display: inline-flex; align-items: center; background: var(--bg-white); padding: 4px 12px; border-radius: 20px; box-shadow: var(--shadow-sm); }

.key-points-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 20px; }
.key-points-list li { background: var(--bg-white); padding: 12px 15px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; color: var(--text-dark); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 10px; }
.key-points-list li::before { content: '✓'; color: var(--primary); font-weight: bold; font-size: 16px; }

/* Inclusions / Exclusions */
.feature-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 20px; }
.feature-list li { background: var(--bg-white); padding: 12px 15px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; color: var(--text-dark); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 10px; }
.feature-list.standard li::before { content: '•'; color: var(--primary); font-size: 20px; line-height: 0; }
.feature-list.inclusions li::before { content: '✓'; color: var(--success); font-weight: bold; font-size: 16px; }
.feature-list.exclusions li::before { content: '✕'; color: var(--danger); font-weight: bold; font-size: 14px; }

/* Itinerary Timeline */
.itinerary-timeline { border-left: 2px dashed var(--primary); margin: 20px 0 20px 15px; padding-left: 25px; }
.itinerary-day { position: relative; margin-bottom: 30px; }
.itinerary-day:last-child { margin-bottom: 0; }
.itinerary-day::before { content: ''; position: absolute; left: -36px; top: 4px; width: 14px; height: 14px; background: var(--primary); border-radius: 50%; border: 3px solid var(--bg-section); }
.day-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.day-desc { font-size: 14px; color: var(--text-gray); }

/* Sticky Booking Sidebar */
.booking-sidebar { background: var(--bg-white); border-radius: var(--radius-lg); padding: 25px; box-shadow: var(--shadow-md); position: sticky; top: 20px; border: 1px solid #eee; }
.price-block { margin-bottom: 20px; }
.price-label { font-size: 13px; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.price-amount { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; margin-top: 5px; }
.price-sub { font-size: 13px; color: var(--text-gray); margin-top: 5px; }
.btn-large {
            display: block;
            width: 100%;
            text-align: center;
            background: var(--primary);
            color: var(--text-light);
            padding: 15px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: background 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-large:hover { background: #d32f2f; }
.booking-note { font-size: 12px; color: var(--text-gray); text-align: center; margin-top: 15px; line-height: 1.4; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin-bottom: 20px; }
.pricing-card { background: var(--bg-white); border: 2px solid transparent; border-radius: var(--radius-md); padding: 20px; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.2s ease; }
.pricing-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pricing-card h4 { font-size: 16px; color: var(--text-dark); margin-bottom: 10px; }
.pricing-card .price { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 5px; line-height: 1; }
.pricing-card .price span { font-size: 14px; font-weight: 600; color: var(--text-gray); }
.pricing-card .desc { font-size: 13px; color: var(--text-gray); line-height: 1.4; }


/* =========================================================
   6. CONTENT & LEGAL PAGES (ABOUT, PRIVACY, TERMS)
========================================================= */
.content-page-hero { text-align: center; padding: 40px 20px; background: var(--bg-section); border-radius: var(--radius-lg); margin-bottom: 40px; }
.content-page-hero h1 { font-size: 36px; color: #111; margin-bottom: 15px; font-weight: 800; }
.content-page-hero p { font-size: 16px; color: var(--text-gray); max-width: 600px; margin: 0 auto; line-height: 1.6; }

.reading-container { max-width: 850px; margin: 0 auto; background: var(--bg-white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid #f0f0f0; }

.text-block { margin-bottom: 35px; }
.text-block:last-child { margin-bottom: 0; }
.text-block h3 { font-size: 20px; color: var(--text-dark); margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid #f0f2f5; }
.text-block p { font-size: 15px; color: var(--text-gray); line-height: 1.8; margin-bottom: 15px; }
.text-block ul { margin-left: 20px; margin-bottom: 15px; }
.text-block li { font-size: 15px; color: var(--text-gray); line-height: 1.8; margin-bottom: 8px; }

/* About Us Features */
.about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 40px; }
.feature-box { text-align: center; padding: 30px 20px; background: var(--bg-section); border-radius: var(--radius-md); }
.feature-box h4 { font-size: 18px; color: var(--text-dark); margin: 15px 0 10px; }
.feature-box p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }


/* =========================================================
   7. FOOTER
========================================================= */
footer { background: #fafafa; margin-top: 60px; padding: 50px 0 20px; border-top: 1px solid #eaeaea; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.footer-col { flex: 1; min-width: 150px; }
.footer-col a { display: block; color: var(--text-gray); text-decoration: none; font-size: 13px; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #eaeaea; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }
.social-icons span { margin-right: 15px; color: var(--text-gray); font-weight: 600; }


/* =========================================================
   8. MEDIA QUERIES (RESPONSIVE)
========================================================= */
@media (max-width: 1024px) {
    .car-grid, .grid-fixed-2 { grid-template-columns: 1fr; }
    .dest-grid-7 { grid-template-columns: repeat(4, 1fr); }
    .dest-grid-5 { grid-template-columns: repeat(3, 1fr); }
	.dest-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .tour-grid { grid-template-columns: repeat(3, 1fr); }
    .details-layout { grid-template-columns: 2fr 1fr; }
}

@media (max-width: 768px) {
    /* Header & Nav */
	
    header { padding: 20px 0; }
    .main-container { margin-top: 16px; margin-bottom: 20px; }
	.container { padding: 0 10px; }
    .navbar { gap: 8px; }
    .logo { font-size: 20px; }
	.logo a { font-size: 20px; }
    .nav-right-actions { gap: 10px; }
    .call-btn { padding: 6px 12px; font-size: 12px; }
    .hamburger-icon { display: flex; }
    
    .nav-menu {
        display: none; position: absolute; top: calc(100% + 15px);
        left: 0; right: 0; background-color: var(--bg-section); 
        flex-direction: column; padding: 0; border-radius: var(--radius-md);
        z-index: 1000; box-shadow: 0 10px 25px rgba(0,0,0,0.2); overflow: hidden;
    }
    .nav-menu li { width: 100%; border-bottom: 1px solid #d1d5db; }
    .nav-menu li:last-child { border-bottom: none; }
    .nav-menu a { background: transparent; color: var(--text-dark); box-shadow: none; width: 100%; text-align: left; padding: 16px 20px; font-size: 15px; display: block; border-radius: 0; }
    .nav-menu a:hover { background: #e5e7eb; color: var(--primary); transform: none; }
    #menu-checkbox:checked ~ .nav-menu { display: flex; }
    
    /* Layout Overrides */
    .section-wrapper { padding: 20px; margin-bottom: 25px; } 
    .dest-grid-7, .dest-grid-5, .dest-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .tour-grid { grid-template-columns: repeat(2, 1fr); }
    .tour-card.wide { grid-column: span 2; }
    .tour-card.tall { grid-row: span 1; }
    
    .dest-info { padding: 20px 10px 8px; }
    .dest-info h4 { font-size: 13px; }
    .dest-info p { font-size: 12px; }
    
    .tour-info { padding: 25px 12px 10px; }
    .tour-info h4 { font-size: 14px; }
    .tour-info p { font-size: 11px; }

    /* Listings */
    .grid-fixed-2 { gap: 12px; grid-template-columns: repeat(2, 1fr); }
    .listing-img { height: 120px; }
    .listing-content { padding: 12px; }
    .listing-title { font-size: 14px; margin-bottom: 4px; }
    .listing-price { font-size: 13px; margin-bottom: 8px; }
    .listing-summary { font-size: 11px; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .listing-points { font-size: 11px; padding-left: 14px; margin-bottom: 15px; }
    .btn-full { padding: 10px; font-size: 12px; }

    /* Details Page Specific */
    .details-layout { grid-template-columns: 1fr; gap: 20px; }
    .tour-hero-img, .car-hero-img { height: 250px; }
		  /* Reformat Collage for Mobile */
            .tour-hero-collage { 
                height: 280px; 
                grid-template-columns: 1fr 1fr; 
                grid-template-rows: 2fr 1.5fr; 
            }
            .tour-hero-collage .main-img { 
                grid-column: 1 / 3; 
                grid-row: 1 / 2; 
            }	
    .tour-header h1, .car-header h1 { font-size: 22px; }
    .feature-list, .pricing-grid { grid-template-columns: 1fr; gap: 10px; }

    /* Sticky Mobile Footer Booking Bar */
    body { padding-bottom: 90px; }
    .booking-sidebar {
        position: fixed; bottom: 0; left: 0; right: 0; top: auto; 
        border-radius: var(--radius-lg) var(--radius-lg) 0 0; 
        padding: 15px 20px; box-shadow: var(--shadow-sticky);
        z-index: 999; display: flex; align-items: center;
        justify-content: space-between; border: none;
        background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    }
    .price-block { margin-bottom: 0; }
    .price-amount { font-size: 22px; }
    .price-label { font-size: 11px; }
    .price-sub { display: none; }
    .btn-large { width: auto; padding: 12px 25px; margin: 0; font-size: 14px; }
    .booking-note { display: none; } 

    /* Legal Pages Mobile */
    .content-page-hero h1 { font-size: 28px; }
    .reading-container { padding: 25px 20px; }
    .text-block h3 { font-size: 18px; }
    .text-block p, .text-block li { font-size: 14px; }
}

@media (max-width: 480px) {
    /* Home Header Collage wrap */
    .header-bg-collage .pane { width: 25%; height: 100%; }
    .header-bg-collage { flex-wrap: wrap; }
    
    .car-img-wrapper { width: 45%; }
    .car-info { padding: 12px 0 12px 12px; }
    .car-info h4 { font-size: 15px; }
}

html :where([style*=border-color]) {
    border-style: none;
}

.homepage-price-box{
	float: right;
    background: var(--primary);
    border-radius: 10px;
    padding: 0 10px;
	color: #fff;
}