/* --- CSS Reset & Variables --- */
:root {
    --bg-color: #f9f8f6;
    --text-primary: #510217;
    --text-secondary: #5a5a5a;
    --text-tertiary: #8e8e8e;

    --accent-gold: #d4af37;
    --accent-gold-dark: #b5952f;
    --gold-gradient: linear-gradient(135deg, #e8d08d 0%, #c49a30 100%);

    --card-bg: rgba(255, 255, 255, 0.65);
    --card-border: rgba(255, 255, 255, 0.8);

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
}

body.mobile-menu-active {
    overflow: hidden !important;
}

.mobile-only {
    display: none !important;
}

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

.d-none {
    display: none !important;
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* --- Header Section --- */
.glass-header {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #510217;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-header {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
}

.dropdown-icon {
    width: 14px;
    height: 14px;
}

.dropdown {
    position: relative;
    padding: 10px 0;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    gap: 0px !important;
    min-width: 220px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
}

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

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 25px;
    color: var(--text-primary);
    width: 100%;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--accent-gold-dark);
}

.gold-rate-widget {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.85rem;
    overflow: hidden;
    /* For roll animation */
}

.gold-rate-content {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
}

.gold-rate-content.roll-out {
    transform: translateY(-20px);
    opacity: 0;
}

.gold-rate-content.roll-ready {
    transform: translateY(20px);
    opacity: 0;
    transition: none;
    /* Move instantly */
}

.gold-rate-widget .rate-label {
    opacity: 0.8;
}

.gold-rate-widget .rate-value {
    font-weight: 600;
    color: var(--accent-gold);
}

.gold-rate-widget .lucide-trending-up {
    width: 14px;
    height: 14px;
    color: #4CAF50;
}

/* --- Typography Utilities --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: center;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); */
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

/* --- Hero Sequence Section --- */
.hero-sequence-section {
    height: 400vh;
    position: relative;
    background-color: transparent;
    z-index: 1;
}

.hero-sticky-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

#hero-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    mix-blend-mode: multiply;
    z-index: 1;
}

.seq-text-container {
    position: absolute;
    z-index: 10;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
}

.seq-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
    color: #FFF;
    margin-bottom: 20px;
}

.seq-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Category Section --- */
.category-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.category-carousel {
    padding: 20px 0 30px;
    /* Reduced bottom padding since pagination is gone */
    position: relative;
    overflow: hidden;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1 !important;
    transition: transform 0.4s ease;
}

.card-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 30px;
    /* Added border-radius */
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f9f8f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.card-img-wrapper img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: 20px;
    /* Also added to img specifically if wrapper has padding */
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

.card-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    margin: 5px 0 0 0;
}

/* Pagination Spacing */
.category-pagination {
    bottom: 0 !important;
}

.category-pagination .swiper-pagination-bullet-active {
    background: var(--text-primary) !important;
}



.card-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    background: #f7f6f3;
    margin-bottom: 24px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
}

/* --- Product Listing Section --- */
.product-listing-section {
    padding: 60px 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth, all 0.3s ease);
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 40px;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px) !important;
    /* Override gsap clearProps if necessary, or let gsap clearProps do its job and this hover takes over */
}

.product-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f7f6f3;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.shop-now-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .shop-now-overlay {
    opacity: 1;
}

.shop-now-btn {
    background: var(--text-primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.product-card:hover .shop-now-btn {
    transform: translateY(0);
}

.shop-now-btn:hover {
    background: var(--accent-gold);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 5px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-rating .star {
    width: 14px;
    height: 14px;
}

.star.filled {
    color: var(--accent-gold);
    fill: var(--accent-gold);
}

.star.empty {
    color: #ddd;
}

.star-rating span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-left: 4px;
}

.product-price {
    display: none !important;
}

/* View More Button */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.view-more-btn {
    display: inline-block;
    padding: 18px 50px;
    border: 1.5px solid var(--text-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.view-more-btn:hover {
    background: var(--text-primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(81, 2, 23, 0.2);
}


/* --- Showcase Section (Apple-style Parallax) --- */
.showcase-section {
    /* For scrolling space */
    position: relative;
    background-color: var(--bg-color);
    z-index: 2;
}

.showcase-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.showcase-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    background: #e6b060;
    padding: 40px 40px 40px 40px;
    border-radius: 30px;
}

.massive-text {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.showcase-desc {
    font-size: 1.8rem;
    font-weight: 300;
    color: #FFF;
}

/* --- Specs Section --- */
.specs-section {
    padding: 150px 0;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.specs-header {
    text-align: center;
    margin-bottom: 80px;
}

.specs-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 500;
}

.sku {
    font-size: 1rem;
    color: var(--text-tertiary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Data Table */
.data-table-container {
    padding: 40px;
    overflow-x: auto;
    opacity: 0;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

.data-table th,
.data-table td {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.data-table th {
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.data-table td {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.data-table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.015);
}

.data-table .subtotal-row td {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.data-table tfoot th,
.data-table tfoot td {
    border-bottom: none;
    padding-top: 30px;
    font-weight: 600;
}

.data-table .grand-total {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold-dark);
}

/* --- Offer Section (Dark Mode) --- */
.offer-section {
    padding: 150px 0;
    background-color: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.offer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 500;
    color: #fff;
}

.offer-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-gold);
    margin: 20px 0 60px 0;
}

.offer-actions {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    opacity: 0;
}

.primary-btn {
    background: var(--gold-gradient);
    color: #fff;
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(196, 154, 48, 0.3);
}

/* Dark mode inputs & cards */
.dark-glass {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dark-glass .input-group input {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.dark-glass .check-btn {
    background: var(--accent-gold);
    color: #111;
}

.dark-trigger {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.dark-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-badges.offer-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    font-size: 1.05rem;
    color: #555;
    font-weight: 400;
}

.testimonials-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-carousel 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-card {
    background-color: #f4f4f4;
    border-radius: 16px;
    padding: 40px 30px;
    width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
}

.testimonial-card::after {
    content: '”';
    position: absolute;
    bottom: -50px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 15rem;
    color: #e8e8e8;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* --- Newsletter Section --- */
.newsletter-section {
    background-color: #e5b15d;
    /* exact warm gold/yellow */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}

.newsletter-bg-icon {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    background-image: url('assets/images/logo-icon-left.png');
}

.newsletter-bg-icon.left {
    top: 20px;
    left: 20px;
    width: 145px;
    height: 121px;
}

.newsletter-bg-icon.right {
    bottom: 20px;
    right: 20px;
    width: 380px;
    height: 300px;
}

.newsletter-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.newsletter-desc {
    font-size: 1rem;
    color: #222;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    height: 52px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 0 25px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: #333;
    outline: none;
    height: 63px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.newsletter-form input::placeholder {
    color: #555;
    font-size: 0.95rem;
}

.newsletter-form button {
    height: 63px;
    background-color: #510217;
    color: #d6b07a;
    border: none;
    padding: 0 40px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.newsletter-form button:hover {
    background-color: #3b0110;
}

/* --- Footer --- */
.site-footer {
    background-color: #510217;
    color: #f4f4f4;
    padding: 80px 0 30px;
    position: relative;
    z-index: 2;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.site-footer .footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.site-footer .brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f4f4f4;
    margin-bottom: 25px;
    max-width: 300px;
    font-weight: 300;
}

.site-footer .social-links {
    display: flex;
    gap: 15px;
}

.site-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #cca677;
    color: #cca677;
    transition: all 0.3s ease;
}

.site-footer .social-links a:hover {
    background-color: #cca677;
    color: #510217 !important;
}

.site-footer .social-links i {
    width: 16px;
    height: 16px;
    text-align: center;
}

.site-footer .footer-heading {
    color: #cca677;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.site-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.site-footer .footer-col a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.site-footer .footer-col a:hover {
    color: #cca677;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.site-footer .footer-bottom p {
    font-size: 0.85rem;
    color: #f4f4f4;
    font-weight: 300;
}

/* --- Responsive Design --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-gold-rate {
    display: none;
}

@media (max-width: 1024px) {
    .seq-title {
        font-size: 5rem;
    }

    .massive-text {
        font-size: 5rem;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 990px) {
    .mobile-only {
        display: block !important;
    }

    .main-header {
        padding: 10px 20px;
        top: 10px;
        border-radius: 30px;
    }

    .mobile-gold-rate {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -110%;
        width: 100%;
        height: 100vh;
        background: #510217;
        padding: 100px 30px 40px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        /* Enable scrolling */
        -webkit-overflow-scrolling: touch;
        border-radius: 20px;
    }

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

    .mobile-menu-header {
        display: block;
        margin-bottom: 30px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 20px;
        width: 100%;
        max-width: 320px;
    }

    .mobile-menu-logo {
        height: 45px;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        width: 100%;
        padding: 0;
        margin: 20px 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 1px;
        justify-content: center;
        padding: 5px 0;
    }

    .nav-menu .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: none;
        box-shadow: none;
        padding: 10px 0 0;
        display: none !important;
        width: 100%;
        text-align: center;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: flex !important;
        flex-direction: column;
        gap: 15px !important;
    }

    .dropdown .dropdown-icon {
        transition: transform 0.3s ease;
        margin-left: 5px;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.7);
        padding: 6px 0;
        font-size: 1.1rem;
        font-weight: 400;
        justify-content: center;
    }

    .gold-rate-widget {
        display: none;
        /* Hide in mobile header to save space */
    }

    /* Mobile Gold Rate */
    .mobile-gold-rate {
        width: 100%;
        max-width: 320px;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 25px;
    }

    .gold-rate-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-rate-label {
        display: block;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-rate-value-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-rate-value {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--accent-gold);
    }

    .trend-icon {
        color: #4ade80;
        width: 20px;
        height: 20px;
    }

    .seq-title {
        font-size: 3.5rem;
    }

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

    .category-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .massive-text {
        font-size: 3.5rem;
    }

    .showcase-desc {
        font-size: 1.2rem;
    }

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

    .offer-title {
        font-size: 3rem;
    }

    .offer-price {
        font-size: 2.5rem;
    }

    .data-table th,
    .data-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

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

    .testimonial-card {
        width: 320px;
        padding: 30px 20px;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-section {
        padding: 60px 0;
    }

    .dropdown:hover .dropdown-menu {
        transform: translateX(0) translateY(0);
    }

    .footer-grid {
        text-align: center;
    }

    .footer-grid .brand-desc {
        width: 100%;
        text-align: center;
        max-width: 100%;
    }

    .site-footer .social-links {
        justify-content: center;
    }

    .footer-contact {
        display: inline-block;
    }

    .footer-contact span {
        margin-right: 10px;
        justify-content: center;
    }
    .site-footer .footer-col a{
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .seq-title {
        font-size: 2.8rem;
    }

    .massive-text {
        font-size: 2.8rem;
    }

    .offer-title {
        font-size: 2.2rem;
    }

    .primary-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .newsletter-form {
        flex-direction: column;
        height: auto;
        gap: 0;
        box-shadow: none;
    }

    .newsletter-form input,
    .newsletter-form button {
        height: 53px;
        width: 100%;
        border-radius: 50px;
        text-align: center;
    }

    .newsletter-form input {
        padding: 20px;
        margin-bottom: 10px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-text {
    position: absolute;
    right: 75px;
    background-color: #fff;
    color: #510217;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Bubble Triangle */
.whatsapp-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
}

.whatsapp-float:hover .whatsapp-text {
    transform: translateX(-5px);
}

.whatsapp-float:hover {
    background-color: #1ebea5;
    transform: translateY(-5px);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-ripple 2s infinite;
}

@keyframes whatsapp-ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #510217;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 180px;
    margin-bottom: 30px;
    animation: preloader-pulse 2s infinite ease-in-out;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-gold);
    animation: preloader-load 3s forwards ease-in-out;
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes preloader-load {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Custom Web Components */
app-header,
app-footer {
    display: block;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* Breadcrumbs & Header Section */
.about-header-section {
    padding: 160px 0 50px;
    background-color: var(--bg-color);
    text-align: center;
}

/* Extra padding for the actual About Us page only */
.about-header-section.about-page-header {
    padding: 160px 0 80px;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

.breadcrumbs .active {
    color: var(--text-primary);
    font-weight: 500;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story-section {
    padding: 80px 0;
    background-color: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #f7f6f3;
    aspect-ratio: 4/4;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* Vision and Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.vm-icon i {
    width: 32px;
    height: 32px;
}

.vm-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
}

.vm-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Video Section */
.video-section {
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.play-button {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.play-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    fill: #fff;
    margin-left: 5px;
    /* Visual center for play icon */
}

.video-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-desc {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Core Values Section */
.core-values-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    width: 36px;
    height: 36px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
}

.value-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {

    .story-grid,
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-image-wrapper {
        order: -1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 3.5rem;
    }

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

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

    .video-container {
        height: 50vh;
    }
}

/* --- Offer Popup --- */
.offer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.offer-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.offer-popup-content {
    background: #fff;
    border-radius: 24px;
    width: 90%;
    max-width: 800px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(50px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-popup-overlay.show .offer-popup-content {
    transform: translateY(0) scale(1);
}

.offer-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.offer-popup-close i {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.offer-popup-close:hover {
    background: var(--text-primary);
}

.offer-popup-close:hover i {
    color: #fff;
}

.offer-popup-image {
    width: 50%;
    position: relative;
    background: #000;
}

.offer-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-popup-text {
    width: 50%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-color);
}

.offer-popup-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.1;
}

.offer-popup-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.offer-popup-text .primary-btn {
    width: fit-content;
    padding: 15px 40px;
    font-size: 1rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    .offer-popup-content {
        flex-direction: column;
        max-width: 400px;
    }

    .offer-popup-image {
        width: 100%;
        height: 250px;
    }

    .offer-popup-text {
        width: 100%;
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }

    .offer-popup-text h2 {
        font-size: 2rem;
    }
}

/* --- Contact Page Styles --- */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}


.footer-contact span a {
    margin-left: 8px;
}

.info-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-gold);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-form-container {
    background: var(--bg-color);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

.map-section {
    padding-bottom: 80px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px;
    }
}

/* --- Product Details Page Styles --- */
.product-details-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.image-zoom-container {
    width: 100%;
    height: 500px;
    background: #f7f6f3;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: crosshair;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.1s ease-out;
    /* Smooth follow cursor */
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: #f7f6f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--accent-gold);
}

.thumbnail img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.details-info {
    padding-top: 20px;
}

.product-sku {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.details-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 15px;
}

.details-price {
    display: none !important;
}

.details-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.details-specs {
    background: #f9f8f6;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-weight: 500;
    color: var(--text-primary);
}

.details-actions {
    margin-bottom: 40px;
}

.shop-whatsapp-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
    font-size: 1.1rem;
    padding: 18px 0;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.shop-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.shop-whatsapp-btn i {
    font-size: 1.3rem;
}

.assurance-badges {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.badge i {
    color: var(--text-primary);
    width: 18px;
    height: 18px;
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .image-zoom-container {
        height: 350px;
    }

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

    .details-specs {
        grid-template-columns: 1fr;
    }

    .assurance-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Product Share Styles --- */
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.share-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.share-links {
    display: flex;
    gap: 12px;
}

.share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-links a:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Careers Page Styles --- */
.careers-section {
    padding: 0px 0 120px;
    background-color: var(--bg-color);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.job-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.meta-separator {
    color: #ddd;
}

.view-job-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.job-card:hover .view-job-btn {
    background: var(--text-primary);
    color: #fff;
}

.view-job-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.job-card:hover .view-job-btn i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .view-job-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Job Modal Styles --- */
.job-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.job-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.job-modal-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.job-modal-overlay.active .job-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.job-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 10;
}

.job-modal-close:hover {
    background: var(--text-primary);
    color: #fff;
    transform: rotate(90deg);
}

.job-modal-header {
    padding: 40px 40px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-job-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-right: 30px;
}

.modal-job-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.job-modal-body {
    padding: 30px 40px;
    overflow-y: auto;
    flex-grow: 1;
}

.job-modal-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.job-modal-body h4:first-child {
    margin-top: 0;
}

.job-modal-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.job-modal-body ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.job-modal-body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.job-modal-body ul li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 8px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.job-modal-footer {
    padding: 24px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fafafa;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    display: flex;
    align-items: center;
}

.job-modal-footer .resume-text {
    display: flex;
    align-items: center;
}

.job-modal-footer .resume-text svg {
    margin-right: 10px;
}

.apply-btn {
    background: var(--text-primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.apply-btn i {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .job-modal-header {
        padding: 30px 20px 20px;
    }

    .job-modal-body {
        padding: 20px;
    }

    .job-modal-footer {
        padding: 20px;
        justify-content: center;
    }

    .apply-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Informational Pages (Shipping, Care, Terms) --- */
.info-page-section {
    padding: 80px 0 120px;
    background-color: var(--bg-color);
}

.info-content-card {
    padding: 60px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 40px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-title i,
.info-title svg {
    color: var(--accent-gold);
    width: 28px;
    height: 28px;
}

.info-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 16px;
}

.info-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-text a {
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--accent-gold);
    transition: all 0.3s ease;
}

.info-text a:hover {
    color: var(--text-primary);
    border-bottom-style: solid;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.info-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-list li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 10px;
    font-size: 1.5rem;
    line-height: 1.2;
}

.info-divider {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 50px 0;
}

@media (max-width: 768px) {
    .info-content-card {
        padding: 40px 24px;
    }

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

/* --- FAQ Page Styles --- */
.faq-page-section {
    padding: 0px 0 120px;
    background-color: var(--bg-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-cat-btn {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
    background: var(--text-primary);
    color: #fff;
    border-color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.faq-content-card {
    padding: 50px;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--accent-gold-dark);
}

.faq-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f9f9f9;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover .faq-toggle {
    background: var(--text-primary);
    color: #fff;
}

.faq-toggle svg,
.faq-toggle i {
    width: 16px;
    height: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.open .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-content-card {
        padding: 30px 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
}

/* Models Horizontal Section */
.models-horizontal-section {
    position: relative;
    overflow: hidden;
    height: auto;
    padding-top: 70px !important;
    padding-bottom: 40px;
    z-index: 2;
    background: #FFF;
    display: flex;
    flex-direction: column;
}

.models-header {
    text-align: center;
}

.models-horizontal-container {
    display: flex;
    width: max-content;
    height: 60vh;
    padding: 0 2vw;
    gap: 40px;
    align-items: center;
}

.model-slide {
    height: 100%;
    position: relative;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.model-slide-img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .models-horizontal-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .models-header {
        margin-bottom: 20px;
    }

    .models-horizontal-container {
        height: 65vh;
        gap: 20px;
        padding: 0 5vw;
    }
}

/* Full Width Video Section */
.full-video-section {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    background: #000;
    z-index: 10;
    display: block;
    overflow: hidden;
}

.full-video-section iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    transform: translate(-50%, -50%) scale(1.34);
}

/* --- Message Popup Overlay --- */
.message-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.message-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.message-popup-content {
    background: var(--bg-color);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.message-popup-overlay.show .message-popup-content {
    transform: translateY(0);
}

.message-popup-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.message-popup-content.success .message-popup-icon {
    color: #28a745;
}

.message-popup-content.error .message-popup-icon {
    color: #dc3545;
}

.message-popup-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.message-popup-content button {
    width: 100%;
}

/* --- No Vacancy Section --- */
.no-vacancy-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
    transition: all 0.3s ease;
}

.no-vacancy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.no-vacancy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    margin-bottom: 25px;
    color: #fff;
}

.no-vacancy-icon i {
    width: 36px;
    height: 36px;
}

.no-vacancy-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.no-vacancy-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.no-vacancy-text a {
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.no-vacancy-text a:hover {
    color: var(--text-primary);
}