/* =========================
   BASE
========================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: #fff;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
    background: #111;
    color: #fff;
    font-size: 13px;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    color: #b76e79;
    text-decoration: none;
    margin-left: 14px;
    font-weight: 500;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000; /* stay above content */
    border-bottom: 1px solid #eee;
    background: #fff;
}

.header-inner {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* LOGO CENTER */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-center img {
    height: 56px;
    object-fit: contain;
}

/* =========================
   DESKTOP NAV
========================= */
.desktop-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.desktop-nav a,
.nav-dropdown span {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    cursor: pointer;
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    min-width: 180px;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* =========================
   MOBILE MENU
========================= */
.menu-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 10px 20px;
    border-top: 1px solid #eee;
}

.mobile-nav a {
    padding: 10px 0;
    text-decoration: none;
    color: #111;
}

.mobile-nav.active {
    display: flex;
}
/* =========================
   MOBILE DROPDOWN
========================= */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: #111;
}

.mobile-dropdown-toggle span {
    float: right;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 12px;
}

.mobile-dropdown-menu a {
    padding: 8px 0;
    font-size: 14px;
    text-decoration: none;
    color: #444;
}

.mobile-dropdown-menu.active {
    display: flex;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    color: #555;
}

/* =========================
   CATEGORIES
========================= */
.categories-section {
    padding: 60px 20px;
}

.categories-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   CATEGORY GRID (HOME)
========================= */
.category-card {
    border: 1px solid #eee;
    text-decoration: none;
    color: #111;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.category-card:hover {
    border-color: #b76e79;
    transform: translateY(-4px);
}

/* IMAGE CARD */
.category-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* NAME BELOW IMAGE */
.category-name {
    padding: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

/* EMPTY CATEGORY */
.category-empty {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #555;
}
@media (max-width: 768px) {
    .category-image,
    .category-empty {
        height: 180px;
    }
}
/* =========================
   TRUST SECTION
========================= */
.trust-section {
    background: #fff;
    padding: 60px 20px;
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-grid h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.trust-grid p {
    color: #555;
    font-size: 15px;
}

/* =========================
   MOBILE TWEAKS
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* =========================
   HOME CAROUSEL (FIXED)
========================= */
.home-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Maintain aspect ratio */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
}

/* RESPONSIVE IMAGE */
.carousel-slide img {
    width: 100%;
    height: auto;              /* ðŸ”‘ KEY FIX */
    aspect-ratio: 16 / 6;      /* Desktop ratio */
    object-fit: cover;
    display: block;
}

/* Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 32px;
    padding: 6px 12px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .carousel-slide img {
        aspect-ratio: 16 / 9;  /* Better for mobile screens */
    }
}

/* =========================
   PRODUCT GRID
========================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card img {
    width: 100%;
    border-radius: 12px;
}

/* SKU (Rose Gold) */
.sku {
    text-align: center;
    margin-top: 10px;
    color: #b76e79;
}

/* =========================
   LAZY LOAD
========================= */
.lazy-img {
    width: 100%;
    filter: blur(12px);
    transition: filter 0.4s ease;
}

.lazy-img.loaded {
    filter: blur(0);
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #111;
    color: #eee;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* BRAND */
.footer-logo {
    height: 48px;
    margin-bottom: 14px;
}

.footer-text {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

/* COLUMNS */
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #b76e79; /* Rose Gold */
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    color: #aaa;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-inner {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}
/* =========================
   CONTACT PAGE
========================= */
.contact-hero {
    background: #f9f9f9;
    padding: 80px 20px 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

/* WRAPPER */
.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* INFO CARDS */
.contact-info {
    display: grid;
    gap: 20px;
}

.info-card {
    border: 1px solid #eee;
    padding: 20px;
    background: #fff;
}

.info-card h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.info-card p {
    color: #555;
    font-size: 14px;
}

.info-card a {
    color: #b76e79; /* Rose Gold */
    text-decoration: none;
}

/* FORM */
.contact-form-box {
    border: 1px solid #eee;
    padding: 30px;
    background: #fff;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.contact-form button {
    background: #111;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.contact-form button:hover {
    background: #b76e79;
}

/* SUCCESS */
.contact-success {
    background: #eaf7f1;
    border: 1px solid #b7e4c7;
    padding: 12px;
    margin-bottom: 20px;
    color: #2d6a4f;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 30px;
    }
}
/* CONTACT PAGE ERROR MESSAGE */
/* TOAST STYLE ALERTS */
.contact-toast {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    display: inline-block;
}

.contact-toast.error {
    background: #fdecea;
    color: #842029;
    border: 1px solid #f5c6cb;
}

.contact-toast.success {
    background: #eaf7f1;
    color: #2d6a4f;
    border: 1px solid #b7e4c7;
}

/* =========================
   ABOUT PAGE
========================= */
.about-hero {
    background: #f9f9f9;
    padding: 80px 20px;
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-inner h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-inner p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* VALUES */
.about-values {
    padding: 60px 20px;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    text-align: center;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-card p {
    color: #555;
    font-size: 15px;
}

/* SHOWROOM */
.showroom-section {
    padding: 60px 20px;
    background: #fff;
}

.showroom-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.showroom-carousel {
    overflow: hidden;
}

.showroom-track {
    display: flex;
    gap: 20px;
    animation: scrollShowroom 40s linear infinite;
}

.showroom-slide {
    min-width: 320px;
    position: relative;
}

.showroom-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.showroom-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px;
    font-size: 13px;
}

/* INSTAGRAM */
.instagram-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.instagram-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.instagram-strip {
    display: flex;
    gap: 14px;
    overflow: hidden;
    animation: scrollInsta 30s linear infinite;
}

.insta-item {
    min-width: 180px;
}

.insta-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* ANIMATIONS */
@keyframes scrollShowroom {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollInsta {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
    .about-inner h1 {
        font-size: 30px;
    }

    .showroom-slide img,
    .insta-item img {
        height: 160px;
    }
}

/* TEAM */
.team-section {
    padding: 60px 20px;
    text-align: center;
}

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.team-card h4 {
    margin-top: 12px;
    font-size: 16px;
}

.team-card p {
    font-size: 14px;
    color: #666;
}
/* Admin ABOUT PAGE TABS */
.nav-tabs {
    border-bottom: 1px solid #eee;
}

.nav-tabs .nav-link {
    color: #555;
    font-weight: 500;
    border: none;
    padding: 12px 20px;
}

.nav-tabs .nav-link.active {
    color: #b76e79; /* Rose Gold */
    border-bottom: 2px solid #b76e79;
    background: transparent;
}

.nav-tabs .nav-link:hover {
    color: #b76e79;
}

.tab-content {
    border: 1px solid #eee;
    padding: 20px;
    background: #fff;
}
/* =========================
   BRAND VIDEO GRID
========================= */
.brand-video-section {
    padding: 60px 20px;
    background: #fff;
}

.brand-video-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* =========================
   VIDEO GRID – MATCH CATEGORY STYLE
========================= */

/* Grid same as category page */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* Card = product card */
.video-card {
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    position: relative;
}

/* Video behaves like product image */
.video-card video {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4; /* 👈 SAME AS CATEGORY IMAGE */
    object-fit: cover;
    display: block;
}

/* Optional: subtle hover zoom like product cards */
.video-card:hover video {
    transform: scale(1.03);
    transition: transform 0.4s ease;
}

/* MOBILE – same density as category */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* 
==================================
   VIDEO CAROUSEL (LIKE SHOWROOM)
================================== 
*/

.video-carousel {
    overflow: hidden;
    width: 100%;
}

/* Track */
.video-track {
    display: flex;
    gap: 30px;
    animation: scrollVideos 40s linear infinite;
}

/* Card – same as category */
.video-card {
    flex: 0 0 auto;
    width: 400px; /* match category card width */
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

/* Video like product image */
.video-card video {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4; /* SAME AS CATEGORY */
    object-fit: cover;
    display: block;
}

/* Hover polish */
.video-card:hover video {
    transform: scale(1.03);
    transition: transform 0.4s ease;
}

/* Animation */
@keyframes scrollVideos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover (recommended) */
.video-carousel:hover .video-track {
    animation-play-state: paused;
}

/* MOBILE */
@media (max-width: 768px) {
    .video-card {
        width: 200px;
    }

    .video-track {
        gap: 16px;
        animation-duration: 30s;
    }
}

.flashlight-text {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;

    background: linear-gradient(
        120deg,
        #999 0%,
        #fff 40%,
        #ffd6dc 50%,   /* rose-gold light */
        #fff 60%,
        #999 100%
    );

    background-size: 200% auto;
    color: #111;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: flashlight 3s linear infinite;
}

@keyframes flashlight {
    from {
        background-position: 200% center;
    }
    to {
        background-position: -200% center;
    }
}
