/* Google Fonts are loaded via wp_enqueue_style in functions.php — no @import needed here */

/* CSS Variables for unifying design */
:root {
    --gold: #C9A84C;
    --gold-dark: #a98935;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --dark: #2C2C2C;
    --text-main: #4A4A4A;
    --text-dark: #222222;
    --bg-light: #fefdfb;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.text-lg { font-size: 1.15rem; }
.text-gold { color: var(--gold); }
.hidden { display: none !important; }
.inline-block { display: inline-block; }

/* Colors & Backgrounds */
.bg-cream { background-color: var(--cream); }
.bg-gold-light { background-color: rgba(201, 168, 76, 0.1); border: 1px solid rgba(201,168,76, 0.2); }
.bg-light-card { background-color: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.04); border-radius: 12px; padding: 40px; }

/* Layout & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* GRIDS */
.grid {
    display: grid;
    gap: 30px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Wreath Logo */
.wreath-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 26px;
    font-style: italic;
    position: relative;
    background-color: var(--white);
    transition: var(--transition);
}

.wreath-logo::before, .wreath-logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--gold);
    box-sizing: content-box;
    padding: 5px;
    top: -6px;
    left: -6px;
    border-color: var(--gold) transparent var(--gold) transparent;
}
.wreath-logo::before { transform: rotate(45deg); opacity: 0.8; }
.wreath-logo::after { transform: rotate(-45deg); opacity: 0.8; }
.wreath-logo:hover { transform: scale(1.05); }

.wreath-logo.small {
    width: 35px; height: 35px; font-size: 20px;
}
.wreath-logo.small::before, .wreath-logo.small::after { padding: 4px; top: -5px; left: -5px; }

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--gold);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
    transition: var(--transition);
    text-align: center;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
}

.cta-button.outline {
    background-color: transparent;
    color: var(--gold-dark);
    box-shadow: none;
}
.cta-button.outline:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* NAVBAR */
.navbar {
    background-color: #ffffff !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,168,76, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: block;
    visibility: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    visibility: visible;
}

.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* wp_nav_menu outputs: .nav-links > ul.primary-nav-list > li > a */
.nav-links ul,
.nav-links .primary-nav-list {
    display: flex !important;
    align-items: center !important;
    gap: 35px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links li,
.nav-links .primary-nav-list li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: list-item !important;
}

.nav-links a,
.nav-links li a,
.nav-links .primary-nav-list li a {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    position: relative !important;
    padding-bottom: 5px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #222222 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.nav-links a::after,
.nav-links li a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background-color: var(--gold) !important;
    transition: var(--transition) !important;
}

.nav-links a:hover::after,
.nav-links li a:hover::after,
.nav-links li.current-menu-item > a::after,
.nav-links li.current_page_item > a::after {
    width: 100% !important;
}

.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a { color: var(--gold) !important; }

.lang-toggle {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--gold);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--gold-dark);
    transition: 0.3s;
}

/* HERO SECTION */
.hero {
    height: 85vh;
    min-height: 550px;
    background: linear-gradient(rgba(245, 240, 232, 0.7), rgba(245, 240, 232, 0.3)), url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?q=80&w=2070&auto=format&fit=crop') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--gold-dark);
}

.hero .slogan {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 35px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 1s ease forwards; }

.fade-in { animation: fadeIn 0.8s ease forwards; }
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* SERVICE & CATEGORY CARDS */
.card-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* Custom placeholder backgrounds for elegant feel */
.bg-1 { background-image: url('https://images.unsplash.com/photo-1530103862676-de8892bc952f?q=80&w=400&fit=crop'); }
.bg-2 { background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?q=80&w=400&fit=crop'); }
.bridal-bg { background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?q=80&w=400&fit=crop'); }
.mascot-bg { background-image: url('https://images.unsplash.com/photo-1533090161767-e6ffed986c88?q=80&w=400&fit=crop'); }
.table-bg { background-image: url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?q=80&w=400&fit=crop'); }
.bday-bg { background-image: url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?q=80&w=400&fit=crop'); }

.service-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.2);
}
.service-card:hover .card-image {
    transform: scale(1.05); /* Smooth zoom effect */
}

.service-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.service-card .card-content {
    padding: 0 25px 25px;
    text-align: center;
}

.service-card .price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-style: italic;
}

/* INSTAGRAM PREVIEW */
.instagram-grid {
    gap: 10px;
}

.ig-placeholder {
    aspect-ratio: 1;
    background-color: var(--cream);
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.ig-placeholder:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CART ICON */
.cart-icon-btn {
    position: relative;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.cart-icon-btn:hover { background: var(--gold); color: white; }

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold-dark);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CART OVERLAY & SIDEBAR */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
}
.cart-overlay.open { display: block; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    max-width: 95vw;
    height: 100vh;
    background: white;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
}
.cart-sidebar.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.cart-header h3 { font-size: 1.6rem; color: var(--gold-dark); }

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    transition: color 0.2s;
}
.cart-close:hover { color: var(--gold-dark); }

.cart-items-list { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-empty { text-align: center; color: #aaa; margin-top: 40px; font-style: italic; }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cart-item-name { font-weight: 500; font-size: 0.95rem; color: var(--text-dark); }
.cart-item-qty { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; }
.cart-item-price { font-size: 0.9rem; color: var(--gold-dark); font-family: var(--font-heading); font-style: italic; }
.cart-item-remove { background: none; border: none; color: #ccc; font-size: 1rem; cursor: pointer; padding: 4px 8px; transition: color 0.2s; }
.cart-item-remove:hover { color: #e74c3c; }

.cart-footer { padding: 20px 24px; border-top: 1px solid rgba(201,168,76,0.2); }

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.cart-total-row strong { font-size: 1.4rem; color: var(--gold-dark); font-family: var(--font-heading); }

.cart-note { text-align: center; font-size: 0.8rem; color: #aaa; margin-top: 10px; }

.whatsapp-btn {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
}
.whatsapp-btn:hover {
    background: #1da851 !important;
    border-color: #1da851 !important;
    color: white !important;
}

.cart-add-btn { background: var(--gold); color: white; border: 2px solid var(--gold); margin-top: 12px; }
.cart-add-btn:hover { background: white; color: var(--gold); }

/* CART NOTIFICATION */
.cart-notif {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    z-index: 5000;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}
.cart-notif.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* BUILDER */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.builder-group { margin-bottom: 30px; }

.builder-group h4 {
    font-size: 1.25rem;
    color: var(--gold-dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.builder-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.builder-radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    background: white;
}
.builder-radio-group label:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    color: var(--gold-dark);
    font-weight: 500;
}
.builder-radio-group input { display: none; }

.builder-check-list { display: flex; flex-direction: column; gap: 10px; }

.builder-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}
.builder-check-item:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
}
.builder-check-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    flex-shrink: 0;
}
.check-label { flex: 1; font-size: 0.95rem; color: var(--text-dark); }
.check-price { font-family: var(--font-heading); font-style: italic; color: var(--gold-dark); font-size: 1rem; font-weight: 600; }

.builder-summary-card {
    background: white;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 90px;
    box-shadow: 0 10px 30px rgba(201,168,76,0.1);
}
.builder-summary-card h4 { font-size: 1.5rem; color: var(--gold-dark); margin-bottom: 16px; }

.builder-summary-list { min-height: 80px; margin-bottom: 16px; }

.builder-summary-empty { color: #bbb; font-style: italic; font-size: 0.9rem; }

.builder-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px dotted #eee;
    color: var(--text-dark);
}

.builder-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 6px;
    border-top: 2px solid rgba(201,168,76,0.2);
    font-size: 1.05rem;
}
.builder-total-row strong { font-size: 1.5rem; color: var(--gold-dark); font-family: var(--font-heading); }

/* VIDEO MODAL */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.video-wrapper {
    width: 90vw;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    cursor: default;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.model-card-play {
    position: relative;
}

.model-card-play::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    pointer-events: none;
    transition: var(--transition);
    line-height: 60px;
    text-align: center;
    text-indent: 4px;
}

.model-card-play:hover::after {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

/* REVIEWS / TESTIMONIALS */
.reviews-section { overflow: hidden; }

.reviews-carousel {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(201,168,76,0.12);
    flex: 0 0 calc((100% - 48px) / 3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow 0.3s;
}

.review-card:hover {
    box-shadow: 0 12px 40px rgba(201,168,76,0.18);
}

.review-stars {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-main);
    font-style: italic;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.review-author span {
    font-size: 0.82rem;
    color: #aaa;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.reviews-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .review-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 600px) {
    .review-card { flex: 0 0 100%; }
}

/* HEADER PAGES */
.page-header {
    text-align: center;
    padding: 90px 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.page-header h1 {
    font-size: 3.2rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-main);
}

/* ABOUT PAGE */
.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.about-stats {
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.1);
}

.stat-box { margin-bottom: 35px; }
.stat-box:last-child { margin-bottom: 0; }

.stat-box h3 {
    font-size: 3.5rem;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-box p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    color: var(--text-dark);
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

/* DETAIL VIEW BACK BUTTON */
.back-button {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 10px 0;
    transition: var(--transition);
}
.back-button:hover { color: var(--gold-dark); }

.detail-header {
    text-align: center;
    margin-bottom: 40px;
}
.detail-header h2 {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.highlight-notice {
    background: rgba(201, 168, 76, 0.08);
    border-left: 4px solid var(--gold);
    padding: 18px 20px;
    border-radius: 0 6px 6px 0;
    margin: 25px 0;
    color: var(--gold-dark);
    font-size: 1.05rem;
}

.ig-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}
.ig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    color: white;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* FOOTER */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand p {
    margin-top: 15px;
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.footer-brand .slogan-small {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 5px;
}

.footer-info a { color: var(--gold); }
.footer-info p { margin-bottom: 10px; color: #ccc; }
.footer-info .highlight {
    margin-top: 20px;
    color: var(--gold);
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a { color: #ccc; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .about-content, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .builder-layout { grid-template-columns: 1fr; }
    .builder-summary-card { position: static; }
}

@media (max-width: 768px) {
    .cart-sidebar { width: 100%; right: -100%; }
    .nav-links {
        position: fixed;
        background: #ffffff !important;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        padding-bottom: 10vh;
        z-index: 999;
    }
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .nav-links.open { left: 0; }
    .mobile-menu-toggle { display: flex; }
    
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { align-items: center; }
    
    .hero { padding: 15px; }
    .hero-content { padding: 40px 20px; }
    .hero h1 { font-size: 2.2rem; }
    .hero .slogan { font-size: 1.3rem; }
    .page-header h1 { font-size: 2.5rem; }
}
