/* ===== RESET & BASE STYLES ===== */
/* Updated: Repair Process Spacing Fix - v2024.1 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Luxury & Elegant */
    --primary-gold: #D4AF37;
    --secondary-gold: #F4E4BC;
    --accent-pearl: #F8F6F0;
    --deep-navy: #1A2332;
    --charcoal: #2C3E50;
    --warm-black: #1C1C1C;
    --soft-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    
    /* Transitions */
    --smooth-transition: all 0.3s ease;
    --slow-transition: all 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--deep-navy);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: var(--smooth-transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #B8860B);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8860B, var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--deep-navy);
}

.btn-secondary:hover {
    background: var(--deep-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: linear-gradient(135deg, var(--primary-gold), #B8860B);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-white:hover {
    background: linear-gradient(135deg, #B8860B, var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.card-overlay .btn {
    position: relative;
    z-index: 20;
    pointer-events: auto;
    display: inline-block;
    cursor: pointer;
}

.card-overlay a {
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--smooth-transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h1 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    font-weight: 600;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover {
    color: inherit;
}

.brand-subtitle {
    display: block;
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--smooth-transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icon {
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--smooth-transition);
    position: relative;
}

.nav-icon:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

#menu-toggle {
    display: none;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: var(--smooth-transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--smooth-transition);
    z-index: 1000;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--smooth-transition);
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--accent-pearl);
    color: var(--primary-gold);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a.current-page {
    background: var(--primary-gold);
    color: var(--white);
    font-weight: 600;
}

.dropdown-menu a.current-page:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-pearl) 0%, var(--soft-gray) 100%);
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--slow-transition);
}

.hero-img:hover {
    transform: scale(1.05);
}

/* ===== COLLECTIONS SECTION ===== */
.collections {
    padding: var(--section-padding);
    background: var(--white);
}

.collections-dark {
    background: var(--deep-navy);
    color: var(--white);
}

.collections-dark .section-title {
    color: var(--white);
}

.collections-dark .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--smooth-transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--slow-transition);
    border-radius: 8px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(20%);
    transition: var(--smooth-transition);
    z-index: 10;
    pointer-events: all;
}

.collection-card:hover .card-overlay {
    transform: translateY(0);
}

.collection-card:hover .card-image img {
    transform: scale(1.05);
}

.collection-card:hover .card-image {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
    padding: var(--section-padding);
    background: var(--deep-navy);
    color: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.showcase-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-list i {
    color: var(--primary-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--slow-transition);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--slow-transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

.product-price {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.add-to-cart {
    width: 100%;
    background: var(--deep-navy);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--smooth-transition);
}

.add-to-cart:hover {
    background: var(--primary-gold);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--soft-gray);
    color: var(--deep-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more {
    text-align: center;
}

.load-more button:disabled {
    cursor: not-allowed;
    background: var(--text-light);
    border-color: var(--text-light);
    opacity: 0.6;
}

.load-more button:disabled:hover {
    transform: none;
    background: var(--text-light);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.brand-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.value-item span {
    font-weight: 500;
    color: var(--deep-navy);
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship {
    padding: var(--section-padding);
    background: var(--accent-pearl);
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.craft-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--smooth-transition);
}

.craft-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.craft-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.craft-icon i {
    font-size: 2rem;
    color: var(--white);
}

.craft-item h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.craft-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--deep-navy);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-gold);
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    transition: var(--smooth-transition);
}

.social-links a:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--soft-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--smooth-transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--warm-black);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--smooth-transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--soft-gray);
}

.modal-header h3 {
    color: var(--deep-navy);
    font-size: 1.5rem;
}

.close {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--smooth-transition);
}

.close:hover {
    color: var(--deep-navy);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--soft-gray);
}

.cart-total {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--deep-navy);
}

#checkout-btn {
    width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    #menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .craftsmanship-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .brand-values {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--accent-pearl);
        margin-top: 0.5rem;
        border-radius: 8px;
        display: none;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.bg-navy {
    background-color: var(--deep-navy);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ===== SERVICE PAGES STYLES ===== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--accent-pearl) 0%, var(--soft-gray) 100%);
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--smooth-transition);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.page-title {
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.service-hero {
    padding: var(--section-padding);
    background: var(--white);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-text h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.service-hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Process Steps */
.design-process,
.repair-process {
    padding: 3rem 0;
    background: var(--soft-gray);
}

/* Clean repair process design without numbers */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.timeline-item {
    position: relative;
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-gold);
    transition: var(--smooth-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Removed redundant timeline-content::before - using border-top instead */

/* Removed old conflicting process-step and step-number rules */
    font-family: var(--font-heading);
}

/* Timeline content styling without numbers */
.timeline-content h3 {
    color: var(--deep-navy);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    padding-top: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.timeline-content li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 0.8rem;
}

/* Hide the timeline numbers */
.timeline-number {
    display: none;
}

/* Add subtle process flow indicators */
/* Removed flow arrows that were causing grey lines */

/* Mobile responsive timeline */
@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Removed mobile flow arrows that were causing grey lines */
    
    .timeline-content {
        padding: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.step-content li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

/* Removed old timeline connector line */

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 100px;
}

.timeline-number {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Service Cards */
.categories-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Service page specific improvements */
.service-details {
    margin: 1.5rem 0;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.service-details li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.category-card,
.repair-service-card,
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    position: relative;
}

.category-card:hover,
.repair-service-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-icon,
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i,
.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.category-card h3,
.repair-service-card h3,
.service-card h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.category-card p,
.repair-service-card p,
.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-pricing {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--soft-gray);
}

/* Removed category-price specific styling - now using service-pricing structure */

/* Category card list styling to match repair services */
.category-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.category-card li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.category-card li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price-range {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.time-frame {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.service-price {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 1rem;
}

.service-time {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.consultation-details,
.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.detail-item,
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i,
.benefit-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Removed repair-booking styles - now using care-consultation */

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Removed old consultation booking styles - now using care-consultation */
}

.booking-form h3 {
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

/* Size Guide Specific Styles */
.size-chart {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.size-chart th,
.size-chart td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--soft-gray);
}

.size-chart th {
    background: var(--deep-navy);
    color: var(--white);
    font-weight: 600;
}

/* Removed .size-chart tr.highlight styling */

.size-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.step-content h4 {
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.fit-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fit-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.fit-option.recommended {
    border: 2px solid var(--primary-gold);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.fit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.fit-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

/* Calculator Styles */
.size-calculator {
    padding: var(--section-padding);
    background: var(--accent-pearl);
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.calculator-tool {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.calc-group {
    margin-bottom: 1.5rem;
}

.calc-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
    font-weight: 500;
}

.calc-group input,
.calc-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--soft-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--smooth-transition);
}

.calc-group input:focus,
.calc-group select:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.size-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-pearl);
    border-radius: 10px;
}

.size-conversions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.size-item {
    text-align: center;
}

.size-item label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.size-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero-content,
    .booking-content,
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Reorder service hero elements on mobile - image below text */
    .service-hero-content {
        display: flex;
        flex-direction: column;
    }
    
    .service-hero-text {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .service-hero-image {
        order: 2;
        margin-top: 1rem;
        max-height: 300px;
        overflow: hidden;
    }
    
    .service-hero-image img {
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
    
    /* Optimize mobile hero text */
    .service-hero-text h2 {
        font-size: 2rem;
    }
    
    .service-hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .fit-options {
        grid-template-columns: 1fr;
    }
    
    .size-conversions {
        grid-template-columns: 1fr;
    }
}

/* ===== JEWELRY CARE PAGE STYLES ===== */

/* Guidelines Grid - Simple with improved alignment */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.guideline-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    text-align: center;
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.guideline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.guideline-card h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.guideline-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.care-tips {
    list-style: none;
    padding: 0;
    text-align: left;
}

.care-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.care-tips li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
}

/* Care by Type Grid - Improved alignment and spacing */
.care-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.care-type-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
}

.care-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.care-type-item h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.care-specifics h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.care-specifics h4:first-child {
    margin-top: 0;
}

.care-specifics ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.care-specifics ul li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Do's styling */
.care-specifics h4:first-of-type + ul li::before {
    content: '✓';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Don'ts styling */
.care-specifics h4:last-of-type + ul li::before {
    content: '✗';
    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .care-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .guideline-card,
    .care-type-item {
        padding: 1.5rem;
    }
    
    .guideline-icon,
    .type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .guidelines-grid,
    .care-types-grid {
        margin: 0 -1rem 2rem;
    }
    
    .guideline-card,
    .care-type-item {
        border-radius: 10px;
        margin: 0 1rem;
    }
}

/* ===== CUSTOM DESIGN PAGE MARGIN FIXES ===== */

/* Fix Design Categories section spacing */
.design-categories {
    padding: 4rem 0;
    background: var(--white);
}

.design-categories .section-header {
    margin-bottom: 3rem;
}

.design-categories .section-title {
    margin-bottom: 1.5rem;
}

.design-categories .section-subtitle {
    margin-bottom: 2.5rem;
}

/* Fix Testimonials section spacing */
.design-testimonials {
    padding: 4rem 0;
    background: var(--soft-gray);
}

.design-testimonials .section-header {
    margin-bottom: 3rem;
}

.design-testimonials .section-title {
    margin-bottom: 1.5rem;
}

.design-testimonials .section-subtitle {
    margin-bottom: 2.5rem;
}

/* Fix testimonial author spacing */
.testimonial-author .author-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: var(--deep-navy);
    font-weight: 600;
}

.testimonial-author .author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Improve testimonials grid spacing */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content .stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

/* Professional Care Services section */
.professional-care {
    padding: var(--section-padding);
    background: var(--white);
}

/* Service cards list styling */
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.service-card ul li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== CARE CALENDAR SECTION ===== */
.care-calendar {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.calendar-season {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
}

.calendar-season:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.season-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.season-header i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.season-header h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    font-family: var(--font-heading);
}

.season-tasks h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.season-tasks ul {
    list-style: none;
    padding: 0;
}

.season-tasks ul li {
    padding: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.season-tasks ul li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== CARE KIT SECTION ===== */
.care-kit {
    padding: var(--section-padding);
    background: var(--white);
}

.care-kit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.care-kit-text h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.care-kit-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.kit-contents h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.kit-contents ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.kit-contents ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.kit-contents ul li i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.kit-pricing {
    margin: 2rem 0;
    text-align: center;
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.kit-pricing p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.care-kit-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== CARE CONSULTATION SECTION ===== */
.care-consultation {
    padding: var(--section-padding);
    background: var(--deep-navy);
    color: var(--white);
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.consultation-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.consultation-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.consultation-booking {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    color: var(--text-dark);
}

.consultation-booking h3 {
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Responsive margin fixes */
@media (max-width: 768px) {
    .design-categories,
    .design-testimonials {
        padding: 3rem 0;
    }
    
    .design-categories .section-header,
    .design-testimonials .section-header {
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Care Calendar responsive */
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .calendar-season {
        padding: 1.5rem;
    }
    
    .season-header i {
        font-size: 1.5rem;
    }
    
    .season-header h3 {
        font-size: 1.2rem;
    }
    
    /* Care Kit responsive */
    .care-kit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .care-kit-text h2 {
        font-size: 2rem;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
    
    /* Care Consultation responsive */
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-text h2 {
        font-size: 2rem;
    }
    
    .consultation-booking {
        padding: 1.5rem;
    }
}

/* ===== EMERGENCY REPAIR SERVICES SECTION ===== */
.emergency-services {
    padding: var(--section-padding);
    background: var(--accent-pearl);
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.emergency-text h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.emergency-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.emergency-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.emergency-feature i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.emergency-feature h4 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.emergency-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.emergency-pricing {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.emergency-pricing p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.emergency-pricing p:last-child {
    margin-bottom: 0;
}

.emergency-pricing p strong {
    color: var(--deep-navy);
    font-weight: 600;
}

.emergency-contact {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.emergency-contact h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--accent-pearl);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.contact-method i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-method p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-method span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Emergency Services Responsive */
@media (max-width: 768px) {
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .emergency-text h2 {
        font-size: 2rem;
    }
    
    .emergency-contact {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 0.8rem;
    }
}

/* ===== REPAIR SERVICE PAGE MARGIN FIXES ===== */

/* Fix section spacing throughout repair service page */
.repair-service-categories,
.repair-services,
.quality-guarantee,
.emergency-services,
.insurance-claims,
.repair-booking {
    padding: 4rem 0;
}

.repair-process {
    padding: 3rem 0;
}

/* Ensure consistent section backgrounds - Updated: Wrist Measurement Cache Fix v20241216012 */
.repair-service-categories {
    background: var(--white);
}

.repair-services {
    background: var(--white);
}

.repair-process {
    background: var(--soft-gray);
}

.quality-guarantee {
    background: var(--soft-gray);
}

.insurance-claims {
    background: var(--white);
}

/* Fix section header margins */
.repair-service-categories .section-header,
.repair-services .section-header,
.repair-process .section-header,
.quality-guarantee .section-header,
.insurance-claims .section-header {
    margin-bottom: 3rem;
}

.repair-service-categories .section-title,
.repair-services .section-title,
.repair-process .section-title,
.quality-guarantee .section-title,
.insurance-claims .section-title {
    margin-bottom: 1.5rem;
}

.repair-service-categories .section-subtitle,
.repair-services .section-subtitle,
.repair-process .section-subtitle,
.quality-guarantee .section-subtitle,
.insurance-claims .section-subtitle {
    margin-bottom: 2.5rem;
}

/* Fix grid spacing */
.repair-categories-grid,
.repair-services-grid,
.insurance-services {
    margin-top: 0;
    margin-bottom: 0;
}

/* Fix process steps spacing */
.repair-process .process-steps {
    margin-top: 3rem;
    gap: 3rem;
}

/* Fix quality guarantee content spacing */
.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.guarantee-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.guarantee-feature i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.guarantee-feature h4 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.guarantee-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.guarantee-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.guarantee-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fix insurance services grid */
.insurance-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insurance-service {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
}

.insurance-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Repair Service Responsive Fixes */
@media (max-width: 768px) {
    .repair-service-categories,
    .repair-services,
    .repair-process,
    .quality-guarantee,
    .emergency-services,
    .insurance-claims,
    .repair-booking {
        padding: 3rem 0;
    }
    
    .repair-service-categories .section-header,
    .repair-services .section-header,
    .repair-process .section-header,
    .quality-guarantee .section-header,
    .insurance-claims .section-header {
        margin-bottom: 2rem;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guarantee-text h2 {
        font-size: 2rem;
    }
    
    .insurance-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .insurance-service {
        padding: 1.5rem;
    }
}

/* Compact Refund Timeline - Dedicated CSS Classes */
.refund-timeline-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.refund-phase {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.phase-marker {
    flex-shrink: 0;
    position: relative;
}

.phase-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--gold);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-dot i {
    font-size: 10px !important;
    color: var(--white) !important;
    line-height: 1;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.refund-phase:not(:last-child) .phase-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    width: 2px;
    height: 24px;
    background: var(--light-gray);
}

.phase-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.phase-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.2;
}

.phase-duration {
    font-size: 0.8rem;
    color: var(--medium-gray);
    line-height: 1.3;
}

/* Responsive adjustments for refund timeline */
@media (max-width: 768px) {
    .refund-timeline-compact {
        gap: 0.5rem;
    }
    
    .refund-phase {
        gap: 0.5rem;
        padding: 0.375rem 0;
    }
    
    .phase-dot {
        width: 20px;
        height: 20px;
    }
    
    .phase-dot i {
        font-size: 8px;
    }
    
    .refund-phase:not(:last-child) .phase-marker::after {
        top: 24px;
        height: 20px;
    }
    
    .phase-title {
        font-size: 0.85rem;
    }
    
    .phase-duration {
        font-size: 0.75rem;
    }
}

/* Size Guide Tables - Elegant Design with Blue Headers */
.ring-chart-container,
.bracelet-size-chart {
    margin-top: 2rem;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.ring-size-table,
.bracelet-size-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-family: 'Lato', sans-serif;
    border-radius: 8px;
    overflow: hidden;
    table-layout: fixed;
}

.ring-size-table thead,
.bracelet-size-table thead {
    background: #334155;
}

.ring-size-table th,
.bracelet-size-table th {
    padding: 1.125rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    border: none;
    position: relative;
}

/* Equal width for all columns */
.ring-size-table th,
.bracelet-size-table th {
    width: 20%;
}

.ring-size-table th::after,
.bracelet-size-table th::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.ring-size-table th:last-child::after,
.bracelet-size-table th:last-child::after {
    display: none;
}

.ring-size-table td,
.bracelet-size-table td {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    border: none;
    color: #374151;
    font-weight: 500;
    position: relative;
}

.ring-size-table td::after,
.bracelet-size-table td::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #f3f4f6;
}

.ring-size-table td:last-child::after,
.bracelet-size-table td:last-child::after {
    display: none;
}

/* Row borders */
.ring-size-table tbody tr,
.bracelet-size-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
}

.ring-size-table tbody tr:last-child,
.bracelet-size-table tbody tr:last-child {
    border-bottom: none;
}

/* Subtle alternating rows */
.ring-size-table tbody tr:nth-child(even),
.bracelet-size-table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* Remove special highlighting - all rows use standard alternating colors */
/* No special styles for .highlight class - they will use normal alternating row colors */

/* Elegant hover effects */
.ring-size-table tbody tr:hover,
.bracelet-size-table tbody tr:hover {
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e2e8f0;
}

/* Refined size notes */
.size-note {
    margin-top: 1.25rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
    line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ring-chart-container,
    .bracelet-size-chart {
        margin: 1rem -1rem 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .ring-size-table,
    .bracelet-size-table {
        font-size: 0.8rem;
        border-radius: 0;
        min-width: 600px;
        table-layout: auto;
    }
    
    .ring-size-table th,
    .bracelet-size-table th {
        padding: 0.875rem 0.5rem;
        font-size: 0.75rem;
        width: auto;
        white-space: nowrap;
    }
    
    .ring-size-table td,
    .bracelet-size-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .size-note {
        margin: 1rem;
        font-size: 0.8rem;
    }
}

/* Wrist Measurement Methods - Dedicated CSS Classes */
.wrist-measurement-methods {
    margin-bottom: 3rem;
}

.wrist-measurement-methods h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.wrist-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.wrist-method-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrist-method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wrist-method-number {
    width: 50px !important;
    height: 50px !important;
    background: #d4af37 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    font-family: 'Lato', sans-serif !important;
}

.wrist-method-content h4 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.wrist-method-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.wrist-method-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrist-method-content li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.wrist-method-content li::before {
    content: '✓' !important;
    color: #d4af37 !important;
    font-weight: bold !important;
    margin-right: 0.75rem !important;
    font-size: 1rem !important;
    display: inline-block !important;
}

/* Mobile responsiveness for wrist measurement */
@media (max-width: 768px) {
    .wrist-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wrist-method-card {
        padding: 1.5rem;
    }
    
    .wrist-method-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    .wrist-method-content h4 {
        font-size: 1.2rem;
    }
    
    .wrist-measurement-methods h3 {
        font-size: 1.5rem;
    }
}

/* ===== REPAIR TESTIMONIALS SECTION ===== */
.repair-testimonials {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.repair-testimonials .section-header {
    margin-bottom: 3rem;
}

.repair-testimonials .section-title {
    margin-bottom: 1.5rem;
}

.repair-testimonials .section-subtitle {
    margin-bottom: 0;
}

.repair-testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.repair-testimonials .testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
}

.repair-testimonials .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.repair-testimonials .testimonial-content {
    margin-bottom: 1.5rem;
}

.repair-testimonials .testimonial-content .stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.repair-testimonials .testimonial-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    font-size: 1rem;
}

.repair-testimonials .testimonial-author .author-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: var(--deep-navy);
    font-weight: 600;
}

.repair-testimonials .testimonial-author .author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive for repair testimonials */
@media (max-width: 768px) {
    .repair-testimonials {
        padding: 3rem 0;
    }
    
    .repair-testimonials .section-header {
        margin-bottom: 2rem;
    }
    
    .repair-testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .repair-testimonials .testimonial-card {
        padding: 1.5rem;
    }
}

/* ===== SIZE GUIDE PAGE STYLES ===== */

/* Ring Size Guide Section */
.ring-size-guide {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.ring-size-guide .section-header {
    margin-bottom: 3rem;
}

.ring-size-guide .section-title {
    margin-bottom: 1.5rem;
}

.ring-size-guide .section-subtitle {
    margin-bottom: 0;
}

.sizing-content {
    margin-top: 3rem;
}

.measurement-methods h3 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.method-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.method-content h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.method-content ul {
    list-style: none;
    padding: 0;
}

.method-content ul li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.method-content ul li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Size Chart Styling */
.size-chart-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.size-chart-container h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

/* Bracelet Size Guide Section */
.bracelet-size-guide {
    padding: var(--section-padding);
    background: var(--white);
}

.bracelet-size-guide .section-header {
    margin-bottom: 3rem;
}

.bracelet-size-guide .section-title {
    margin-bottom: 1.5rem;
}

.bracelet-size-guide .section-subtitle {
    margin-bottom: 0;
}

.bracelet-sizing {
    margin-top: 3rem;
}

.measurement-instructions h3 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

/* Necklace Length Guide Section */
.necklace-length-guide {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.necklace-length-guide .section-header {
    margin-bottom: 3rem;
}

.necklace-length-guide .section-title {
    margin-bottom: 1.5rem;
}

.necklace-length-guide .section-subtitle {
    margin-bottom: 0;
}

.length-guide-content {
    margin-top: 3rem;
}

.length-guide-content h3 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

/* Sizing Tips Section */
.sizing-tips {
    padding: var(--section-padding);
    background: var(--white);
}

.sizing-tips .section-header {
    margin-bottom: 3rem;
}

.sizing-tips .section-title {
    margin-bottom: 1.5rem;
}

.sizing-tips .section-subtitle {
    margin-bottom: 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    border-left: 4px solid var(--primary-gold);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tip-card h4 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Professional Fitting Section */
.professional-fitting {
    padding: var(--section-padding);
    background: var(--deep-navy);
    color: var(--white);
}

.professional-fitting .section-header {
    margin-bottom: 3rem;
}

.professional-fitting .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.professional-fitting .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.fitting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.fitting-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
}

.fitting-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.fitting-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fitting-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fitting-benefits .benefit-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.fitting-benefits .benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.fitting-booking {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    color: var(--text-dark);
}

.fitting-booking h3 {
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Size Guide Responsive */
@media (max-width: 768px) {
    .ring-size-guide,
    .bracelet-size-guide,
    .necklace-length-guide,
    .sizing-tips,
    .professional-fitting {
        padding: 3rem 0;
    }
    
    .ring-size-guide .section-header,
    .bracelet-size-guide .section-header,
    .necklace-length-guide .section-header,
    .sizing-tips .section-header,
    .professional-fitting .section-header {
        margin-bottom: 2rem;
    }
    
    .sizing-content,
    .bracelet-sizing,
    .length-guide-content,
    .tips-grid,
    .fitting-content {
        margin-top: 2rem;
    }
    
    .methods-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card,
    .tip-card {
        padding: 1.5rem;
    }
    
    .size-chart-container {
        padding: 1.5rem;
    }
    
    .fitting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fitting-text h2 {
        font-size: 2rem;
    }
    
    .fitting-booking {
        padding: 1.5rem;
    }
}

/* ===== ADDITIONAL SIZE GUIDE STYLING FIXES ===== */

/* Bracelet Fit Guide Section */
.bracelet-fit-guide {
    margin: 3rem 0;
}

.bracelet-fit-guide h3 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.fit-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fit-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: var(--smooth-transition);
}

.fit-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fit-option.recommended {
    border: 2px solid var(--primary-gold);
    background: var(--accent-pearl);
}

.fit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.fit-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.fit-option h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fit-option p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.fit-option p strong {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.fit-option ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.fit-option ul li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.fit-option ul li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Bracelet Size Chart */
.bracelet-size-chart {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bracelet-size-chart h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.bracelet-chart {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.bracelet-chart th,
.bracelet-chart td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--soft-gray);
}

.bracelet-chart th {
    background: var(--deep-navy);
    color: var(--white);
    font-weight: 600;
}

/* Removed .bracelet-chart tr.highlight styling */

/* Sizing Tips Enhancement */
.tip-card {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    border-left: none;
    border-top: 4px solid var(--primary-gold);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tip-card h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.tip-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tip-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.tip-card ul li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
}

/* Calculator Form Styling */
.calculator-form {
    margin-top: 1.5rem;
}

.calc-group {
    margin-bottom: 1.5rem;
}

.calc-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
    font-weight: 500;
    font-size: 0.95rem;
}

.calc-group input,
.calc-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--soft-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--smooth-transition);
    background: var(--white);
}

.calc-group input:focus,
.calc-group select:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.size-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-pearl);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.size-results h4 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.size-conversions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.size-item {
    text-align: center;
    padding: 0.5rem;
}

.size-item label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    font-weight: 500;
}

.size-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
    font-family: var(--font-heading);
}

/* Calculator Button */
.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold), #B8860B);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--smooth-transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, #B8860B, var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .fit-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fit-option {
        padding: 1.5rem;
    }
    
    .bracelet-size-chart {
        padding: 1.5rem;
        overflow-x: auto;
    }
    
    .bracelet-chart {
        min-width: 600px;
    }
    
    .size-conversions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .fit-option,
    .tip-card,
    .bracelet-size-chart {
        padding: 1rem;
    }
    
    .recommended-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .size-conversions {
        grid-template-columns: 1fr;
    }
}

/* ===== INTERNATIONAL RING SIZE CHART STYLING ===== */
.ring-size-chart {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.ring-size-chart h3 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-align: center;
}

.ring-size-chart .size-chart-container {
    background: transparent;
    padding: 0;
    box-shadow: none;
    margin-top: 0;
}

/* ===== NECKLACE LENGTH GUIDE STYLING ===== */
.necklace-lengths {
    margin-top: 3rem;
}

.length-guide-visual {
    margin-bottom: 4rem;
    text-align: center;
}

.necklace-silhouette {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.length-option {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    position: relative;
}

.length-line {
    height: 3px;
    border-radius: 2px;
    background: var(--primary-gold);
    position: relative;
    flex-grow: 1;
    max-width: 200px;
}

.length-line.choker {
    width: 60px;
}

.length-line.princess {
    width: 100px;
}

.length-line.matinee {
    width: 140px;
}

.length-line.opera {
    width: 180px;
}

.length-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.length-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.length-info {
    min-width: 120px;
    text-align: left;
}

.length-info h4 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.length-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.length-descriptions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.length-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    position: relative;
}

.length-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.length-card.popular {
    border: 2px solid var(--primary-gold);
    background: var(--accent-pearl);
}

.length-card h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.length-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.length-card ul {
    list-style: none;
    padding: 0;
}

.length-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.length-card ul li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Responsive Design for Necklace Guide */
@media (max-width: 768px) {
    .ring-size-chart {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .necklace-silhouette {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    
    .length-option {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .length-line {
        max-width: 150px;
    }
    
    .length-info {
        min-width: auto;
        text-align: center;
    }
    
    .length-descriptions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .length-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .necklace-silhouette {
        padding: 1.5rem 1rem;
    }
    
    .length-line {
        max-width: 120px;
    }
    
    .length-line.choker { width: 40px; }
    .length-line.princess { width: 70px; }
    .length-line.matinee { width: 90px; }
    .length-line.opera { width: 110px; }
    
    .length-card {
        padding: 1rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* ===== SUPPORT PAGES STYLING ===== */

/* Ensure original service-hero layout is preserved for service pages */
.service-hero:not(.contact-hero):not(.privacy-hero):not(.returns-hero):not(.shipping-hero) .service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Contact Page Hero Center Alignment */
.contact-hero {
    background: var(--white);
    padding: var(--section-padding);
}

.contact-hero .contact-hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
    grid-template-columns: none !important;
    padding: 2rem 0;
}

/* Privacy Page Hero Center Alignment */
.privacy-hero {
    background: var(--white);
    padding: var(--section-padding);
}

.privacy-hero .privacy-hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
    grid-template-columns: none !important;
    padding: 2rem 0;
}

.privacy-hero .service-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero .service-hero-text h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: var(--deep-navy);
    font-family: var(--font-heading);
}

.privacy-hero .service-hero-text p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.privacy-hero .service-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
    flex-direction: row;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-hero .highlight-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.privacy-hero .highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    display: block;
}

.privacy-hero .highlight-item h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.privacy-hero .highlight-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.privacy-hero .service-hero-image {
    display: none;
}

/* Responsive Design for Privacy Hero */
@media (max-width: 968px) {
    .privacy-hero .service-highlights {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .privacy-hero .highlight-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .privacy-hero .privacy-hero-content {
        padding: 1.5rem 0;
    }
    
    .privacy-hero .service-hero-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .privacy-hero .service-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .privacy-hero .service-highlights {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .privacy-hero .highlight-item {
        min-width: auto;
        max-width: none;
    }
    
    .privacy-hero .highlight-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero .service-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .privacy-hero .service-hero-text p {
        font-size: 1rem;
    }
    
    .privacy-hero .highlight-item i {
        font-size: 1.8rem;
    }
    
    .privacy-hero .highlight-item h4 {
        font-size: 1.1rem;
    }
}

/* Returns Page Hero Center Alignment */
.returns-hero {
    background: var(--white);
    padding: var(--section-padding);
}

.returns-hero .returns-hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
    grid-template-columns: none !important;
    padding: 2rem 0;
}

.returns-hero .service-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.returns-hero .service-hero-text h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: var(--deep-navy);
    font-family: var(--font-heading);
}

.returns-hero .service-hero-text p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.returns-hero .service-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
    flex-direction: row;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.returns-hero .highlight-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.returns-hero .highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    display: block;
}

.returns-hero .highlight-item h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.returns-hero .highlight-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.returns-hero .service-hero-image {
    display: none;
}

/* Responsive Design for Returns Hero */
@media (max-width: 968px) {
    .returns-hero .service-highlights {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .returns-hero .highlight-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .returns-hero .returns-hero-content {
        padding: 1.5rem 0;
    }
    
    .returns-hero .service-hero-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .returns-hero .service-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .returns-hero .service-highlights {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .returns-hero .highlight-item {
        min-width: auto;
        max-width: none;
    }
    
    .returns-hero .highlight-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .returns-hero .service-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .returns-hero .service-hero-text p {
        font-size: 1rem;
    }
    
    .returns-hero .highlight-item i {
        font-size: 1.8rem;
    }
    
    .returns-hero .highlight-item h4 {
        font-size: 1.1rem;
    }
}

/* Shipping Page Hero Center Alignment */
.shipping-hero {
    background: var(--white);
    padding: var(--section-padding);
}

.shipping-hero .shipping-hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
    grid-template-columns: none !important;
    padding: 2rem 0;
}

.shipping-hero .service-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.shipping-hero .service-hero-text h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: var(--deep-navy);
    font-family: var(--font-heading);
}

.shipping-hero .service-hero-text p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.shipping-hero .service-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
    flex-direction: row;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.shipping-hero .highlight-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.shipping-hero .highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    display: block;
}

.shipping-hero .highlight-item h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.shipping-hero .highlight-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.shipping-hero .service-hero-image {
    display: none;
}

/* Responsive Design for Shipping Hero */
@media (max-width: 968px) {
    .shipping-hero .service-highlights {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .shipping-hero .highlight-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .shipping-hero .shipping-hero-content {
        padding: 1.5rem 0;
    }
    
    .shipping-hero .service-hero-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .shipping-hero .service-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .shipping-hero .service-highlights {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .shipping-hero .highlight-item {
        min-width: auto;
        max-width: none;
    }
    
    .shipping-hero .highlight-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .shipping-hero .service-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .shipping-hero .service-hero-text p {
        font-size: 1rem;
    }
    
    .shipping-hero .highlight-item i {
        font-size: 1.8rem;
    }
    
    .shipping-hero .highlight-item h4 {
        font-size: 1.1rem;
    }
}

.contact-hero .service-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero .service-hero-text h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: var(--deep-navy);
    font-family: var(--font-heading);
}

.contact-hero .service-hero-text p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-hero .service-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
    flex-direction: row;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero .highlight-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.contact-hero .highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.contact-hero .highlight-item h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.contact-hero .highlight-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.contact-hero .service-hero-image {
    display: none;
}

/* Responsive Design for Contact Hero */
@media (max-width: 968px) {
    .contact-hero .service-highlights {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .contact-hero .highlight-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .contact-hero .contact-hero-content {
        padding: 1.5rem 0;
    }
    
    .contact-hero .service-hero-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-hero .service-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-hero .service-highlights {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-hero .highlight-item {
        min-width: auto;
        max-width: none;
    }
    
    .contact-hero .highlight-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero .service-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .contact-hero .service-hero-text p {
        font-size: 1rem;
    }
    
    .contact-hero .highlight-item i {
        font-size: 1.8rem;
    }
    
    .contact-hero .highlight-item h4 {
        font-size: 1.1rem;
    }
}

/* Contact Methods Section */
.contact-methods-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-method-card h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.method-details {
    color: var(--text-light);
    line-height: 1.6;
}

.method-details p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.method-details .phone-number,
.method-details .email {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.method-details .hours {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.method-details small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--soft-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--smooth-transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.form-actions {
    text-align: center;
    padding-top: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--soft-gray);
    margin-bottom: 0;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--smooth-transition);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    font-weight: 600;
    margin: 0;
    font-family: var(--font-heading);
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1rem;
    transition: var(--smooth-transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-answer a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Customer Support Section */
.customer-support-section {
    padding: var(--section-padding);
    background: var(--accent-pearl);
}

.support-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--smooth-transition);
}

.support-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-option i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-option h3 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.support-option p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.support-option small {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.support-cta {
    margin-top: 2rem;
}

/* Form Checkbox Styling */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--accent-pearl);
    border-radius: 8px;
    border: 1px solid var(--soft-gray);
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .support-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-option {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 1rem 0;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-method-card,
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .form-checkbox {
        padding: 0.8rem;
    }
    
    .support-option {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

/* ===== SHIPPING PAGE SPECIFIC STYLING ===== */

/* Shipping Table */
.shipping-rates-section {
    padding: var(--section-padding);
    background: var(--white);
}

.shipping-table-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 2rem;
}

.shipping-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.shipping-table th,
.shipping-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--soft-gray);
}

.shipping-table th {
    background: var(--deep-navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-cell {
    font-weight: 600;
    color: var(--deep-navy);
}

.destination-cell i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.time-cell {
    color: var(--text-dark);
    font-weight: 500;
}

.cost-cell {
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.free-shipping-cell {
    color: var(--text-dark);
    font-style: italic;
    font-size: 0.9rem;
}

.tracking-cell {
    text-align: center;
}

.text-success {
    color: #28a745;
}

.shipping-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-pearl);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.shipping-note i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.shipping-note p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Process Timeline */
.process-section {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.step-content ul li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.step-time {
    display: inline-block;
    background: var(--accent-pearl);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Special Services Section */
.special-services-section {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
    position: relative;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.service-feature-card h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.service-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--smooth-transition);
}

.feature-link:hover {
    color: var(--deep-navy);
    text-decoration: underline;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Customs Section */
.customs-section {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.customs-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.customs-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
    position: relative;
}

.customs-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.customs-info-card.featured {
    border: 2px solid var(--primary-gold);
    background: var(--accent-pearl);
}

.region-flag {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.customs-info-card h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.customs-info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.tax-badge {
    display: inline-block;
    background: var(--accent-pearl);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.customs-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--accent-pearl);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.disclaimer-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.disclaimer-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclaimer-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Tracking Section */
.tracking-section {
    padding: var(--section-padding);
    background: var(--white);
}

.tracking-journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tracking-step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
    position: relative;
}

.tracking-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tracking-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tracking-content h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.tracking-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tracking-time {
    display: inline-block;
    background: var(--accent-pearl);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tracking-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--accent-pearl);
    border-radius: 15px;
}

.tracking-cta h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.tracking-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Design for Shipping Pages */
@media (max-width: 768px) {
    .shipping-table-container {
        overflow-x: auto;
    }
    
    .shipping-table {
        min-width: 700px;
    }
    
    .process-timeline,
    .tracking-journey,
    .services-grid,
    .customs-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step,
    .tracking-step-card,
    .service-feature-card,
    .customs-info-card {
        padding: 1.5rem;
    }
    
    .step-icon,
    .tracking-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .customs-disclaimer {
        padding: 1.5rem;
    }
    
    .tracking-cta {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .shipping-table th,
    .shipping-table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .process-step,
    .tracking-step-card,
    .service-feature-card,
    .customs-info-card {
        padding: 1rem;
    }
    
    .customs-disclaimer {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }
}

/* ===== RETURNS PAGE SPECIFIC STYLING ===== */

/* Returns Policy Section */
.return-policy-section {
    padding: var(--section-padding);
    background: var(--white);
}

.policy-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.policy-detail-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
    position: relative;
}

.policy-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.policy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.policy-detail-card h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.policy-content {
    color: var(--text-light);
    line-height: 1.6;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.policy-list li i {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.policy-list li strong {
    font-weight: 600;
    color: var(--deep-navy);
}

.policy-list li span,
.policy-list li p {
    margin: 0;
    text-align: left;
    flex: 1;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--soft-gray);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Icons in step items (for eligibility requirements) */
.step-item i {
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step-item p strong {
    font-weight: 600;
    color: var(--deep-navy);
}

.step-item a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.step-item a:hover {
    text-decoration: underline;
}

.timeline-items {
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

/* Removed grey vertical line that was causing artifacts */

.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--primary-gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Exchange Section */
.exchange-section {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.exchange-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.exchange-option-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
}

.exchange-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.exchange-option-card h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.exchange-option-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.option-details ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.option-details ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.option-details ul li i {
    color: var(--primary-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.option-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--smooth-transition);
}

.option-link:hover {
    color: var(--deep-navy);
    text-decoration: underline;
}

/* Return Shipping Information */
.return-shipping-section {
    padding: var(--section-padding);
    background: var(--white);
}

.shipping-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.shipping-info-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
    overflow: hidden;
}

.shipping-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.shipping-info-card.featured {
    border: 2px solid var(--primary-gold);
    background: var(--accent-pearl);
}

.card-header {
    background: var(--deep-navy);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shipping-info-card.featured .card-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.card-header i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 1.2rem;
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.card-content p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content ul li {
    padding: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-content ul li::before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Return Form Section */
.return-form-section {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.return-request-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Returns Page */
@media (max-width: 768px) {
    .policy-cards-grid,
    .exchange-options-grid,
    .shipping-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policy-detail-card,
    .exchange-option-card {
        padding: 2rem 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .return-request-form {
        padding: 2rem 1.5rem;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 11px;
    }
}

@media (max-width: 480px) {
    .policy-detail-card,
    .exchange-option-card {
        padding: 1.5rem 1rem;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .return-request-form {
        padding: 1.5rem 1rem;
    }
    
    .option-icon,
    .policy-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== PRIVACY POLICY PAGE SPECIFIC STYLING ===== */

/* Policy Overview Section */
.policy-overview-section {
    padding: var(--section-padding);
    background: var(--white);
}

.policy-summary-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--soft-gray);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--soft-gray);
}

.policy-header i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.policy-header h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.policy-header p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.policy-intro p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.policy-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.privacy-navigation {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-navigation h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.privacy-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.privacy-navigation ul li {
    padding: 0.5rem 0;
}

.privacy-navigation ul li a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--smooth-transition);
}

.privacy-navigation ul li a:hover {
    color: var(--deep-navy);
    text-decoration: underline;
}

.privacy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid var(--soft-gray);
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-subsection {
    margin-bottom: 2rem;
}

.privacy-subsection:last-child {
    margin-bottom: 0;
}

.privacy-subsection h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--accent-pearl);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-card i {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.usage-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--accent-pearl);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.usage-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.usage-item h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.usage-item p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.right-card {
    background: var(--accent-pearl);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--smooth-transition);
    border: 1px solid var(--soft-gray);
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.right-card i {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.right-card h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.right-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
}

.security-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--soft-gray);
}

.security-list li:last-child {
    border-bottom: none;
}

.security-list li i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Privacy Contact Section */
.privacy-contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.privacy-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.privacy-contact-info .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--accent-pearl);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.privacy-contact-info .contact-method i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.privacy-contact-info .contact-method h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.privacy-contact-info .contact-method p {
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .policy-summary-card,
    .privacy-section {
        padding: 2rem 1.5rem;
    }
    
    .privacy-navigation {
        padding: 1.5rem;
    }
    
    .privacy-navigation ul {
        grid-template-columns: 1fr;
    }
    
    .info-cards,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card,
    .right-card {
        padding: 1.5rem;
    }
    
    .usage-item {
        padding: 1rem;
    }
    
    .privacy-contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .privacy-contact-info .contact-method {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-summary-card,
    .privacy-section {
        padding: 1.5rem 1rem;
    }
    
    .privacy-navigation {
        padding: 1rem;
    }
    
    .info-card,
    .right-card {
        padding: 1rem;
    }
    
    .policy-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .highlight {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ===== COLLECTION PAGES SPECIFIC STYLING ===== */

/* Collection Hero Sections */
.collection-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.asian-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(212, 175, 55, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="knotwork" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,2 C15,2 18,5 18,10 C18,15 15,18 10,18 C5,18 2,15 2,10 C2,5 5,2 10,2 Z" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23knotwork)"/></svg>');
}

.viking-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(70, 130, 180, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="norse" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M12.5,5 L20,12.5 L12.5,20 L5,12.5 Z" fill="none" stroke="%234682B4" stroke-width="0.8" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23norse)"/></svg>');
}

.roman-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(212, 175, 55, 0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="laurel" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><ellipse cx="15" cy="15" rx="6" ry="3" fill="none" stroke="%23D4AF37" stroke-width="0.6" opacity="0.3"/><ellipse cx="15" cy="15" rx="3" ry="6" fill="none" stroke="%23D4AF37" stroke-width="0.6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23laurel)"/></svg>');
}

.mayan-hero {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.85), rgba(64, 224, 208, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mayan" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="8" y="8" width="4" height="4" fill="none" stroke="%2340E0D0" stroke-width="0.5" opacity="0.4"/><circle cx="10" cy="10" r="6" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23mayan)"/></svg>');
}

.egyptian-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(70, 130, 180, 0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hieroglyphs" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="8" r="3" fill="none" stroke="%234682B4" stroke-width="0.5" opacity="0.3"/><path d="M5,15 Q12.5,20 20,15" fill="none" stroke="%23D4AF37" stroke-width="0.4" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23hieroglyphs)"/></svg>');
}

/* Heritage Section */
.heritage-section {
    padding: var(--section-padding);
    background: var(--white);
}

.heritage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.heritage-title {
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.heritage-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.heritage-description strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.heritage-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: var(--accent-pearl);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    transition: var(--smooth-transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card .feature-title {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.feature-card .feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Collection Showcase */
.collection-showcase {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--smooth-transition);
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-item.featured {
    grid-column: span 2;
}

.item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.collection-item.featured .item-image {
    height: 300px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--smooth-transition);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 35, 50, 0.8), rgba(212, 175, 55, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--smooth-transition);
}

.collection-item:hover .item-overlay {
    opacity: 1;
}

.collection-item:hover .item-image img {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.overlay-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-details-btn {
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--smooth-transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-details-btn:hover {
    background: var(--secondary-gold);
    color: var(--deep-navy);
    transform: scale(1.05);
}

.item-info {
    padding: 2rem;
}

.item-title {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.item-price {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.item-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.item-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--accent-pearl);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Placeholder Images */
.placeholder-image {
    height: 100%;
    background: linear-gradient(135deg, var(--soft-gray), var(--accent-pearl));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-image p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.asian-placeholder {
    background: linear-gradient(135deg, #E8F5E8, #F0F8E8);
    color: #2E7D2E;
}

.viking-placeholder {
    background: linear-gradient(135deg, #E6F3FF, #F0F8FF);
    color: #4682B4;
}

.roman-placeholder {
    background: linear-gradient(135deg, #FFF8DC, #F5F5DC);
    color: #B8860B;
}

.mayan-placeholder {
    background: linear-gradient(135deg, #F0E68C, #F5DEB3);
    color: #A0522D;
}

.egyptian-placeholder {
    background: linear-gradient(135deg, #E6E6FA, #F0F8FF);
    color: #4169E1;
}

/* Craftsmanship Section (Collection Pages) */
.craftsmanship-section {
    padding: var(--section-padding);
    background: var(--white);
}

.craftsmanship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.craftsmanship-subtitle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-style: italic;
}

.craftsmanship-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--accent-pearl);
    border-radius: 15px;
    transition: var(--smooth-transition);
}

.process-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-content h4 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.process-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.craftsmanship-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.craftsmanship-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--soft-gray), var(--accent-pearl));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    border: 2px dashed var(--primary-gold);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--deep-navy);
}



/* Responsive Design for Collection Pages */
@media (max-width: 1024px) {
    .heritage-content,
    .craftsmanship-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .collection-item.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .collection-hero {
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .heritage-title {
        font-size: 1.7rem;
    }
    
    .heritage-description {
        font-size: 1rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .product-card .product-image {
        height: 250px;
        padding: 0.8rem;
    }
    
    .product-card .product-info {
        padding: 1.2rem 1.2rem 1.5rem;
    }
    
    .item-image {
        height: 200px;
    }
    
    .collection-item.featured .item-image {
        height: 250px;
    }
    
    .heritage-features {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .process-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .heritage-title {
        font-size: 1.5rem;
    }
    
    .item-info {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-number {
        align-self: center;
    }
    
    .image-placeholder {
        height: 250px;
        padding: 1.5rem;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .image-placeholder p {
        font-size: 1.1rem;
    }
}