/* --- MODERN CLEAN DESIGN SYSTEM --- */
:root {
    --primary-gold: #C49A45;
    --primary-hover: #A67C52;
    --bg-color: #F7F8FA; 
    --card-bg: #FFFFFF;
    --text-main: #333333;
    --text-light: #666666;
    --border-color: #EAEAEA;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: var(--text-main);
    color: var(--primary-gold);
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 1001;
}

.announcement-bar a {
    color: var(--bg-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-gold);
    margin-left: 10px;
    transition: color 0.3s;
    display: inline-block;
    animation: popInOut 1.5s infinite ease-in-out; 
}

.announcement-bar a:hover {
    color: var(--white);
    animation: none; 
    transform: scale(1.1); 
}

@keyframes popInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.10); color: #FFFFFF; } 
    100% { transform: scale(1); }
}

/* --- NAVBAR --- */
header {
    background-color: var(--card-bg);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-container img {
    height: 65px; 
    width: 65px;  
    object-fit: contain;
}
.brand-name {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

nav { display: flex; align-items: center; gap: 30px; }
nav a { text-decoration: none; color: var(--text-main); font-weight: 500; font-size: 15px; transition: color 0.3s; }
nav a:hover, nav a.active { color: var(--primary-gold); }

.nav-btn {
    background-color: var(--primary-gold);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    transition: background 0.3s;
}
.nav-btn:hover { background-color: var(--primary-hover); }

/* Login Button Styling */
.login-btn {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 10px; 
}

.login-btn:hover {
    background-color: var(--primary-gold);
    color: white;
}

/* The Logout Button */
.logout-btn {
    border: 2px solid #D32F2F; 
    color: #D32F2F;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 10px;
}

.logout-btn:hover {
    background-color: #D32F2F;
    color: white;
}

/* --- THE HAMBURGER ICON (Hidden on Desktop by default) --- */
.menu-toggle {
    display: none; 
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-gold);
}


/* --- HERO SECTION --- */
.hero-card {
    background-color: var(--card-bg);
    margin: 40px 50px;
    padding: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

.hero-text { max-width: 50%; }
.hero-text h1 { font-size: 42px; margin-bottom: 15px; color: var(--text-main); }
.hero-text p { font-size: 18px; color: var(--text-light); margin-bottom: 30px; }

.hero-image-placeholder {
    width: 400px; 
    height: 300px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden; 
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CONTENT GRIDS --- */
.grid-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 0 50px 40px 50px;
}
.card-section {
    background-color: var(--card-bg); padding: 40px; border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid var(--border-color);
}
.card-section h2 { font-size: 28px; margin-top: 0; margin-bottom: 20px; color: var(--text-main); }

/* Forms */
input, select, textarea {
    width: 100%; padding: 12px; margin-bottom: 15px;
    border: 1px solid var(--border-color); border-radius: 4px; box-sizing: border-box; font-family: inherit;
}
.form-btn {
    background-color: var(--primary-gold); color: white; border: none;
    padding: 12px 20px; width: 100%; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer;
    transition: 0.3s;
}
.form-btn:hover { background-color: var(--primary-hover); }

/* Info List */
.info-list p { margin: 10px 0; font-size: 16px; }
.info-list strong { color: var(--primary-gold); }
.info-list a { color: var(--text-dark, #333); text-decoration: none; border-bottom: 1px dashed var(--primary-gold); transition: color 0.2s; }
.info-list a:hover { color: var(--primary-gold); }

/* --- GALLERY --- */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 20px;
}
.gallery-item {
    height: 250px; background-color: #eee; border-radius: 8px;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    cursor: pointer; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.gallery-item:hover img { transform: scale(1.05); } 

/* --- LIGHTBOX (IMAGE POPUP) STYLES --- */
.lightbox {
    display: none; 
    position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85); 
    align-items: center; justify-content: center;
}
.lightbox img {
    max-width: 90%; max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease; 
}
.lightbox-close {
    position: absolute; top: 20px; right: 40px;
    color: white; font-size: 50px; font-weight: bold; cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--primary-gold); }

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- FOOTER --- */
footer { text-align: center; padding: 30px; color: var(--text-light); font-size: 14px; }

/* --- PRODUCT CARDS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain; /* Changed from cover to contain */
    background-color: #fcfcfc; /* Adds a very soft background behind transparent/small images */
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin: 10px 0 5px 0;
    color: var(--text-main);
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.add-to-cart-btn {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 10px 20px;
    width: 100%;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-gold);
    color: white;
}

/* --- THE FLOATING MESSAGE BUTTON --- */
/* ─── Unified floating portal button (👤) ─────────────────────────── */
.message-btn {
    position: fixed;
    top: 90px;
    right: 30px;
    background-color: var(--card-bg);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.13);
    cursor: pointer;
    z-index: 9999;
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.2s;
}
.message-btn:hover {
    background-color: var(--primary-gold);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(196,154,69,0.35);
}

/* Red unread-count badge (top-right of button) */
.message-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #D32F2F;
    color: white;
    font-size: 11px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--card-bg);
    line-height: 1;
}

/* Pulsing wig-update dot (top-LEFT of button, visually distinct from badge) */
.wig-btn-dot {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 14px;
    height: 14px;
    background: #e74c3c;
    border-radius: 50%;
    border: 2px solid white;
    animation: wig-pulse 1.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes wig-pulse {
    0%,100% { transform:scale(1);   opacity:1;   box-shadow: 0 0 0 0   rgba(231,76,60,0.55); }
    50%      { transform:scale(1.3); opacity:0.9; box-shadow: 0 0 0 7px rgba(231,76,60,0);    }
}

/* --- SHOP SEARCH & FILTERS --- */
.shop-header {
    text-align: center;
    padding: 40px 20px 20px;
}

.search-form {
    margin-bottom: 25px;
}

.search-bar {
    width: 100%;
    max-width: 600px;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.search-bar:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(196, 154, 69, 0.2);
}

.filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-pills a.pill {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--card-bg);
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-pills a.pill.active, .filter-pills a.pill:hover {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

/* --- SHOPPING CART STYLES --- */
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 40px 50px;
}

.cart-items-section {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding-bottom: 15px; border-bottom: 2px solid var(--border-color); color: var(--text-main); }
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--border-color); vertical-align: middle; }

.cart-item-info { display: flex; align-items: center; gap: 15px; }
.cart-item-info img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }

.remove-btn {
    background: transparent;
    color: #D32F2F;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.cart-summary {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 4px 20px rgba(196, 154, 69, 0.1);
    height: fit-content;
}

.summary-row {
    display: flex; justify-content: space-between; margin-bottom: 15px; color: var(--text-main);
}

.summary-total {
    display: flex; justify-content: space-between; margin-top: 20px; padding-top: 20px;
    border-top: 2px solid var(--border-color); font-size: 20px; font-weight: bold; color: var(--primary-gold);
}

/* --- MODALS --- */
.cart-modal {
    display: none; 
    position: fixed; z-index: 100000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    align-items: center; justify-content: center;
}

.cart-modal-content {
    background: var(--card-bg); padding: 35px; border-radius: 12px;
    width: 90%; max-width: 400px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative; border: 2px solid var(--primary-gold);
}

.close-modal {
    position: absolute; top: 15px; right: 20px; font-size: 28px; font-weight: bold;
    color: var(--text-light); cursor: pointer; transition: color 0.3s;
}

.close-modal:hover { color: #D32F2F; }

/* --- FLOATING APPOINTMENT BUTTON --- */
/* ─── Appointment button (📅) — same family as 👤 button ────────── */
.appointment-btn {
    position: fixed;
    top: 156px;
    right: 30px;
    background-color: var(--card-bg);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.13);
    cursor: pointer;
    z-index: 9999;
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.2s;
}
.appointment-btn:hover {
    background-color: var(--primary-gold);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(196,154,69,0.35);
}

.app-card {
    text-align: left; padding: 15px; background: #f9f9f9; 
    border: 1px solid var(--border-color); border-left: 4px solid var(--primary-gold);
    border-radius: 8px; margin-bottom: 20px;
}


/* ========================================================================= */
/* --- MOBILE RESPONSIVENESS (Media Queries) ---                             */
/* ========================================================================= */
@media screen and (max-width: 850px) {
    
    /* 1. Un-hide the Hamburger Icon ONLY on phones */
    .menu-toggle { 
        display: block !important; 
    }
    
    /* 2. Allow the header to wrap content to the next line */
    header { 
        padding: 15px 20px; 
        flex-wrap: wrap; 
    }

    .brand-container img { height: 45px; width: 45px; }
    .brand-name { font-size: 20px; }

    /* 3. Hide Navigation by default, force it to the bottom using 'order: 3' */
    header nav {
        display: none; 
        width: 100%;
        order: 3; /* Pushes the menu below the logo and hamburger */
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        border-top: 1px solid var(--border-color);
        padding-top: 15px;
        text-align: center;
    }
    
    /* 4. Show the Navigation Links when toggled */
    header nav.show { 
        display: flex; 
    }

    /* 5. Make all buttons span full width on mobile */
    nav .nav-btn, nav .login-btn, nav .logout-btn {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        margin: 0;
    }

    /* 6. Stack the hero section */
    .hero-card {
        flex-direction: column;
        padding: 30px 20px;
        margin: 20px;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .hero-image-placeholder {
        width: 100%;
        height: 250px;
    }

    /* 7. Stack the grids and fix spacing */
    .grid-container {
        grid-template-columns: 1fr;
        margin: 0 20px 20px 20px;
    }
    .card-section {
        margin: 0 20px 20px 20px !important;
        padding: 20px;
    }

    /* Change gallery and products from 3 columns to 1 or 2 */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: 1fr; }
    
    .cart-container {
        grid-template-columns: 1fr;
        margin: 20px;
    }
    
    /* Reposition floating buttons slightly for mobile */
    .message-btn { top: 75px; right: 20px; width: 40px; height: 40px; font-size: 16px; }
    .appointment-btn { top: 130px; right: 20px; width: 50px; height: 50px; font-size: 22px; }
}

/* ========================================================================= */
/* --- CUSTOM QUANTITY SELECTOR ---                                          */
/* ========================================================================= */

/* 1. Hide default HTML5 number spinners completely */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

/* 2. Style the new custom wrapper and buttons */
.qty-container {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background: white;
}

.qty-btn {
    background: #f1f1f1;
    color: var(--text-main);
    border: none;
    padding: 10px 18px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    user-select: none; /* Prevents text highlighting when tapping fast */
}

.qty-btn:hover {
    background: #e0e0e0;
}

.qty-input {
    width: 60px;
    text-align: center;
    border: none !important; /* Removes the inner border */
    font-size: 18px;
    font-weight: bold;
    color: var(--text-main);
    padding: 10px 0 !important;
    margin-bottom: 0 !important; /* Overrides the default form margin */
    outline: none;
}
/* ─── Wig order tracker cards (used in portal custom-wigs tab) ─── */
.wig-tracker-card         { padding:18px; background:white; border:1px solid var(--border-color); margin-bottom:18px; border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,0.04); }
.wig-tracker-card.has-unread { border-left:4px solid #e74c3c; }
.wig-tracker-card.cancelled-card { opacity:0.62; background:#fafafa; }
.wig-tracker-admin-note   { background:#fdfbf7; border-left:3px solid var(--primary-gold); padding:14px; margin-top:12px; border-radius:0 6px 6px 0; font-size:13px; }
.wig-new-badge { display:inline-block; background:#e74c3c; color:white; font-size:10px; font-weight:bold; padding:2px 7px; border-radius:10px; margin-left:6px; vertical-align:middle; }
.status-badge  { color:white; padding:4px 10px; border-radius:4px; font-size:11px; font-weight:bold; text-transform:uppercase; white-space:nowrap; }
.badge-pending    { background:#e74c3c; }
.badge-production { background:#3498db; }
.badge-payment    { background:#9b59b6; }
.badge-paysub     { background:#16a085; }
.badge-ready      { background:#27ae60; }
.badge-completed  { background:#27ae60; }
.badge-cancelled  { background:#95a5a6; }

/* ========================================================================= */
/* --- POLICY SECTION (Image Inspired + Accordion) ---                       */
/* ========================================================================= */

.policy-header-new {
    text-align: center;
    margin-bottom: 40px;
}

.policy-header-new h2 {
    font-family: 'Georgia', serif; /*[cite: 1] */
    font-size: 32px; /*[cite: 1] */
    letter-spacing: 2px;
    color: var(--text-main); /*[cite: 1] */
    text-transform: uppercase;
    margin: 0;
}

/* Quick View Horizontal Layout */
.policy-quick-view {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
}

.policy-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Vertical Dividers */
.policy-divider {
    width: 1px;
    background-color: var(--text-main); /*[cite: 1] */
    margin: 0 10px;
    opacity: 0.8;
}

/* Circular Icons */
.policy-icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid var(--text-main); /*[cite: 1] */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.policy-item h4 {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: var(--text-main); /*[cite: 1] */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.policy-item p {
    font-size: 14px; /*[cite: 1] */
    color: var(--text-light); /*[cite: 1] */
    margin: 0;
    line-height: 1.6; /*[cite: 1] */
}

/* --- CLEANED UP POLICY SECTION --- */
.policy-card {
    background: #fdfbf5;
    border: 1px solid #e5d49a;
    border-left: 5px solid var(--primary-gold);
    border-radius: 10px;
    margin: 40px 50px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Fixes the accordion slide animation */
/* Fixes the accordion slide animation so the padding doesn't "snap" */
.policy-more {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px dashed transparent; /* Keep border transparent when closed */
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0, 1, 0, 1), 
                margin-top 0.4s ease, 
                padding-top 0.4s ease,
                border-color 0.4s ease;
}

.policy-more.open {
    max-height: 2000px; 
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed #e5d49a;
    transition: max-height 0.6s ease-in-out, 
                margin-top 0.4s ease, 
                padding-top 0.4s ease,
                border-color 0.4s ease;
}
.policy-section {
    margin-bottom: 25px;
}

.policy-label {
    font-weight: bold;
    color: var(--primary-gold); /*[cite: 1] */
    font-size: 18px; 
    margin-bottom: 10px;
}

.policy-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-light); /*[cite: 1] */
}

.policy-list li {
    margin-bottom: 8px;
    font-size: 15px; /*[cite: 1] */
}

.policy-body {
    color: var(--text-light); /*[cite: 1] */
    font-size: 15px; /*[cite: 1] */
}

/* The View All Button */
.policy-toggle-btn {
    background: transparent;
    color: var(--text-main); /*[cite: 1] */
    border: 1px solid var(--text-main); /*[cite: 1] */
    padding: 12px 25px;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px; /*[cite: 1] */
    cursor: pointer;
    font-weight: bold;
    font-size: 16px; /*[cite: 1] */
    transition: all 0.3s;
}

.policy-toggle-btn:hover {
    background: var(--text-main); /*[cite: 1] */
    color: var(--card-bg); /*[cite: 1] */
}

.policy-chevron {
    display: inline-block; /* Required to allow the rotation to work */
    transition: transform 0.3s ease;
}

.policy-chevron.rotated {
    transform: rotate(180deg);
}

/* Mobile Responsiveness for 850px screens */
@media screen and (max-width: 850px) { /*[cite: 1] */
    .policy-quick-view {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Change the vertical dividers to horizontal lines on mobile */
   .policy-card {
        margin: 20px !important;
        padding: 20px !important;
    }
    .policy-divider {
        width: 100%;
        height: 1px;
        background-color: #e5d49a; /* Match the gold palette tone instead of dark charcoal */
        margin: 15px 0;
    }

    
    .policy-item {
        padding: 0;
    }
}