/* ============================================================
   KumKum Global - Main Stylesheet
   Premium Export Company Website
   ============================================================ */

/* ---- Root Variables ---- */
:root {
    --white: #FFFFFF;
    --off: #F5F5F5;
    --dark: #2E3138;
    --accent: #4A4F58;
    --text: #111111;
    --border: #D9D9D9;
    --muted: #6B7280;
    --gold: #B8960C;
    --gold-lt: #D4AF37;

    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

/* ---- Typography ---- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h4,
h5,
h6 {
    font-family: var(--font-body);
    font-weight: 600;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- Buttons ---- */
.btn-dark-custom {
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--dark);
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark-custom:hover {
    background: transparent;
    color: var(--dark);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 150, 12, 0.35);
    color: var(--white);
}

/* ---- Navbar ---- */
#mainNav {
    background: #808080;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: var(--transition);
}

#mainNav.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    padding: 0;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.brand-kum {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.brand-global {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white) !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    font-size: 14px;
    border-radius: 6px;
    padding: 8px 14px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--off);
    color: var(--dark);
}

/* ---- Hero Section ---- */
#hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.swiper-slide-active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 33, 40, 0.78) 0%, rgba(30, 33, 40, 0.45) 60%, rgba(30, 33, 40, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s 0.2s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s 0.4s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s 0.6s ease;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s 0.8s ease;
}

.swiper-slide-active .hero-eyebrow,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.hero-pagination {
    bottom: 32px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    width: 28px;
    border-radius: 4px;
}

/* ---- Section Spacing ---- */
.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 70px 0;
}

/* ---- About Preview ---- */
.about-preview {
    background: var(--white);
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-badge {
    position: absolute;
    bottom: 28px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 130px;
}

.about-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.about-badge .badge-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- Product Categories ---- */
.products-section {
    background: var(--off);
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover .cat-image img {
    transform: scale(1.06);
}

.cat-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.cat-body {
    padding: 28px;
}

.cat-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.cat-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 22px;
    line-height: 1.7;
}

/* ---- Why Choose Us ---- */
.why-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    border-color: var(--dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--off);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--dark);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--dark);
    color: var(--white);
}

.why-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ---- Certifications ---- */
.certs-section {
    background: var(--off);
}

.cert-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--off);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--gold);
}

.cert-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: block;
}

.cert-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.cert-auth {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cert-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* ---- CTA Section ---- */
.cta-section {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

/* ---- Product Cards ---- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-stock {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.stock-in {
    background: #dcfce7;
    color: #166534;
}

.stock-out {
    background: #fee2e2;
    color: #991b1b;
}

.stock-req {
    background: #fef9c3;
    color: #713f12;
}

.product-cat-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.product-meta span {
    font-size: 11px;
    background: var(--off);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 8px 12px;
}

/* ---- Filter Bar ---- */
.filter-bar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.filter-bar .form-control,
.filter-bar .form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    padding: 9px 14px;
    transition: var(--transition);
}

.filter-bar .form-control:focus,
.filter-bar .form-select:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(46, 49, 56, 0.08);
}

/* ---- Page Hero ---- */
.page-hero {
    background: var(--dark);
    color: var(--white);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.03) 100%);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* ---- About Page ---- */
.timeline {
    position: relative;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    flex: 1;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
}

.timeline-year {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--muted);
}

/* ---- Stats ---- */
.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* ---- Contact Page ---- */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--off);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 16px;
}

/* ---- Custom Form ---- */
.custom-input {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    padding: 12px 16px;
    transition: var(--transition);
    font-family: var(--font-body);
    background: var(--white);
}

.custom-input:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(46, 49, 56, 0.08);
    outline: none;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

/* ---- Product Detail ---- */
.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--dark);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-spec-table {
    border-collapse: collapse;
    width: 100%;
}

.product-spec-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.product-spec-table td:first-child {
    color: var(--muted);
    width: 140px;
}

.product-spec-table td:last-child {
    color: var(--dark);
    font-weight: 500;
}

/* ---- Gallery Grid ---- */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ---- Enquiry Modal ---- */
.enquiry-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 28px 32px 20px;
}

.modal-body {
    padding: 0 32px 32px;
}

/* ---- Glassmorphism Card ---- */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--gold-lt);
    margin-left: 2px;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 14px;
    font-weight: 500;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-lt);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--gold-lt);
    font-size: 14px;
    margin-top: 2px;
    min-width: 16px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list a:hover {
    color: var(--gold-lt);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Scroll To Top ---- */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--gold);
}

/* ---- Video Hero ---- */
.hero-video-wrap {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#heroVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-video-wrap .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 22, 28, 0.80) 0%, rgba(20, 22, 28, 0.50) 60%, rgba(20, 22, 28, 0.25) 100%);
    z-index: 1;
}

/* ---- Animations ---- */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Misc ---- */
.divider-gold {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    border-radius: 2px;
    margin: 16px 0 24px;
}

.divider-gold.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

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

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- Loading Skeleton ---- */
.skeleton {
    background: linear-gradient(90deg, var(--off) 25%, #ebebeb 50%, var(--off) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    to {
        background-position: -200% 0;
    }
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .section-pad {
        padding: 70px 0;
    }

    .hero-content {
        max-width: 90%;
    }

    .about-badge {
        right: 12px;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 56px 0;
    }

    .about-image-wrap img {
        height: 320px;
    }

    .cat-image {
        height: 200px;
    }

    .product-gallery-main {
        height: 300px;
    }

    .footer-top {
        padding: 56px 0 40px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .product-actions {
        flex-direction: column;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }

    .about-badge {
        position: static;
        margin-top: 16px;
        display: inline-flex;
        gap: 16px;
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .section-pad {
        padding: 48px 0;
    }

    .filter-bar {
        padding: 16px;
    }
}