/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Outfit:wght@200;300;400;600&display=swap');

:root {
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Colors - Brand */
    --color-gold: #F58220;
    --color-gold-light: #FFB36B;
    --color-gold-dark: #CA6510;
    --color-gold-metallic: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);

    /* Semantic Variables (Default/Dark Mode) */
    --bg-body: #0a0a0a;
    /* Slightly richer black */
    --bg-header: rgba(10, 10, 10, 0.9);
    --bg-header-scrolled: rgba(5, 5, 5, 0.98);
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #e0e0e0;
    --text-secondary: #b0b0b0;
    --border-color: rgba(255, 255, 255, 0.12);
    --border-color-card: rgba(255, 255, 255, 0.08);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    --gradient-gold-hover: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    --hero-overlay: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Lato', sans-serif;
    --lh-body: 1.8;
    --ls-heading: 3px;
    --ls-body: 0.5px;

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    /* Increased from 1rem for more breathing room */
    --spacing-md: 2rem;
    /* Normalized */
    --spacing-lg: 3rem;
    /* Reduced from 6rem */
    --spacing-xl: 5rem;
    /* Drastically reduced from 12rem */
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

[data-theme="light"] {
    --bg-body: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.95);
    --bg-header-scrolled: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #4a4a4a;
    --text-secondary: #666666;
    --border-color: #f0f0f0;
    --border-color-card: #eaeaea;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hero-overlay: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 100%);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: var(--ls-heading);
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-fast);
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-white {
    color: var(--text-main);
}

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

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Page Header Gap (Standardized) */
.page-header-gap {
    padding-top: 180px;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .page-header-gap {
        padding-top: 160px;
        /* Safe for mobile header */
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    /* Contrast against gold */
    font-weight: 600;
    border: none;
    box-shadow: 0 5px 20px rgba(245, 130, 32, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 130, 32, 0.6);
    background: var(--gradient-gold-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
    box-shadow: 0 5px 20px rgba(245, 130, 32, 0.3);
}

.text-gold+.btn-outline {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-fast);
    background: var(--bg-header);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

header.scrolled,
header.header-solid {
    background: var(--bg-header-scrolled);
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    transition: height 0.3s ease;
    border-radius: 0;
}

header.scrolled .logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 300;
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* --- Hero (Revamped) --- */

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    /* Increased from 200 for better visibility */
    letter-spacing: 5px;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-down:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-main);
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

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

.about-img img {
    border-radius: 0;
    max-width: 350px;
    /* Reduced from 480px */
    width: 100%;
    display: block;
    margin-right: auto;
    object-fit: cover;
}

/* Minimal sharp shadow */

/* Cards (Minimal) */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Reduced min-width to prevent overflow */
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid var(--border-color-card);
    border-radius: 4px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ensure content spacing in card */
.card>*:last-child {
    margin-top: auto;
}

/* Override for cards that shouldn't force bottom alignment if needed, 
   but generally good for uniformity. 
   Specifically targeting the button if it exists to be at the bottom is better:
*/
.card .btn {
    margin-top: auto;
}

.card:hover {
    border-color: var(--color-gold);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.card h3 {
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: var(--bg-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0.9);
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
        --spacing-md: 2rem;
        --spacing-sm: 1rem;
    }

    /* Fix Hero Overlap */
    .hero {
        padding-top: 100px;
        /* Minimal clear */
    }

    /* Reduce Header Size on Mobile */
    .logo img {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    /* Moved after section-padding to ensure precedence */
    .page-header-gap {
        padding-top: 100px !important;
        /* Minimal clear */
    }

    .card {
        padding: 1.5rem;
    }

    .about-grid,
    .footer-grid,
    .shop-container,
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 100px);
        /* Prevent full screen blocking, enable scroll */
        overflow-y: auto;
        background: var(--bg-body);
        padding: 1.5rem;
        justify-content: flex-start;
        /* improved alignment */
        align-items: stretch;
        /* Full width items */
        text-align: center;
        z-index: 1000;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links a {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0.5rem 0;
        /* Minimal vertical padding */
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        /* Very subtle divider */
        line-height: 1.2;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Compact container */
    .nav-links {
        padding: 1rem;
        gap: 0;
    }



    .nav-links .theme-toggle {
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }


    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Mobile Form Optimization */
    form {
        gap: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        /* Prevents auto-zoom on iOS */
        padding: 0.8rem;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-xs {
    margin-bottom: 0.5rem;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.fw-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-black {
    color: #000 !important;
}

.object-cover {
    object-fit: cover;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.relative {
    position: relative;
}

.absolute-inset {
    position: absolute;
    inset: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

/* Page Header Overlays */
.bg-overlay-dark {
    background: rgba(0, 0, 0, 0.8);
}

.bg-overlay-medium {
    background: rgba(0, 0, 0, 0.7);
}

/* --- Forms (Audition) --- */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 4px;
    font-family: var(--font-body);
}

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

.file-upload-box {
    border: 2px dashed var(--border-color);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-upload-box:hover {
    border-color: var(--color-gold);
    background: var(--bg-card-hover);
}

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

@media (max-width: 600px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* --- Shop Sections --- */
.shop-container {
    display: block;
    /* Removed sidebar grid */
    padding-top: var(--spacing-md);
}

.sidebar {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color-card);
    height: fit-content;
}

.sidebar-section h4 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 0.8rem;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: var(--transition-short);
    color: var(--text-muted);
}

.sidebar ul li a i {
    font-size: 0.8rem;
    color: var(--color-gold);
}

.sidebar ul li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color-card);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.product-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
}

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

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

.btn-add-to-cart {
    width: 100%;
    background: var(--color-gold);
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 8px;
}

.btn-add-to-cart:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.4);
}

.product-info {
    padding: var(--spacing-sm);
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.product-title {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.product-price {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

@media(max-width: 768px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-bottom: var(--spacing-md);
    }
}

/* Luxury Animations & Micro-interactions */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--transition-slow), transform 1s var(--transition-slow);
}

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

.btn,
.card,
.product-card,
.service-card {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3);
}

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

.hover-lift {
    transition: transform var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* --- Multi-step Form --- */
.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
    transform: translateY(-50%);
}

.progress-bar-fill {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    z-index: 1;
    transform: translateY(-50%);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-dot {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-dot.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 10px rgba(245, 130, 32, 0.3);
}

.step-dot.completed {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.step-label {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-dot.active .step-label {
    opacity: 1;
    color: var(--color-gold);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}


@media (max-width: 480px) {

    /* --- Mobile Progress Bar Refinements --- */
    .step-progress {
        margin-bottom: 2rem;
    }

    /* Remove connection line */
    .step-progress::before,
    .progress-bar-fill {
        display: none;
    }

    .step-dot {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        border-width: 1px;
    }

    .step-label {
        font-size: 0.65rem;
        top: 35px;
        /* Adjust position for smaller dot */
    }

    /* --- Mobile Button Refinements --- */
    .form-nav .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .form-nav {
        margin-top: 1rem;
    }
}


.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* --- Utility Classes --- */
.max-w-900 {
    max-width: 900px !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

/* --- Blog Cards --- */
.blog-card {
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.blog-card-img-container {
    height: 250px;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.blog-card-body {
    padding: 2rem;
}

.blog-card-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    width: fit-content;
    padding: 0.5rem 1.5rem;
}

.relative {
    position: relative !important;
}

.z-2 {
    z-index: 2 !important;
}

.section-bg-body {
    background: var(--bg-body);
}

/* --- Component Refactors --- */
.welcome-box {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.welcome-box p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.welcome-box .welcome-title {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.requirement-box {
    padding: 0;
    margin-bottom: 2rem;
}

.requirement-list {
    list-style: none;
    padding: 0;
}

.requirement-footer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.checkbox-flex {
    display: flex;
    align-items: start;
    gap: 10px;
}

.checkbox-flex input {
    margin-top: 4px;
}

.payment-card {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.alert-box-gold {
    border-left: 2px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: var(--text-secondary);
}

.card-pd-1-5 {
    padding: 1.5rem;
}

/* Spacing Utilities */
.m-0 {
    margin: 0 !important;
}

.mt-sm {
    margin-top: 0.5rem !important;
}

.mt-md {
    margin-top: 1.5rem !important;
}

.mt-lg {
    margin-top: 3rem !important;
}

.mb-xs {
    margin-bottom: 0.25rem !important;
}

.mb-sm {
    margin-bottom: 1rem !important;
}

.mb-md {
    margin-bottom: 2rem !important;
}

.mb-lg {
    margin-bottom: 3rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-xs {
    margin-right: 0.5rem !important;
}

/* --- Typography --- */
.fs-xs {
    font-size: 0.8rem !important;
}

.fs-sm {
    font-size: 0.9rem !important;
}

.fs-lg {
    font-size: 1.5rem !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.lh-relaxed {
    line-height: 1.8 !important;
}

/* --- Display --- */
.d-none {
    display: none !important;
}

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

.w-100 {
    width: 100% !important;
}

.text-center {
    text-align: center !important;
}

/* --- Toast Notifications --- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--color-gold);
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 50px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.toast.visible {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-success i {
    color: var(--color-gold);
}

.toast-error i {
    color: #ff4444;
}

/* --- Shopify-grade Shop Styles --- */
.select-styled {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.8rem;
    border-radius: 4px;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.3s;
}

.select-styled:focus {
    border-color: var(--color-gold);
    outline: none;
}

.qty-input-small {
    width: 60px !important;
    background: #000 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 5px !important;
    text-align: center !important;
    border-radius: 4px !important;
}

[data-theme="light"] .qty-input-small {
    background: #fff !important;
    border-color: #ddd !important;
    color: #000 !important;
}

/* --- Admin Status Badges --- */
.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.status-new {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-paid {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status-shipped {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.status-delivered {
    background: rgba(111, 66, 193, 0.2);
    color: #6f42c1;
}

.status-pending {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

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

.table-img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}

.btn-small {
    padding: 5px 10px !important;
    font-size: 0.7rem !important;
}

.blog-card-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.5s ease;
    max-height: 4.5em;
    /* Approximate height for 3 lines */
}

.blog-card-content.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: 2000px;
    /* Large enough to fit content */
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    margin-top: 1rem;
    transition: var(--transition-fast);
}

.read-more-btn:hover {
    color: var(--color-gold-light);
    transform: translateX(5px);
}

/* Expanded Product Details */
.product-card.expanded {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: var(--spacing-md);
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .product-card.expanded {
        flex-direction: column;
    }
}

.product-details-expanded {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    text-align: left;
    width: 100%;
}

.product-card.expanded .product-details-expanded {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.product-card.expanded .product-info {
    text-align: left;
    padding: 0;
    flex: 1;
}

.product-card.expanded .product-img {
    width: 300px;
    max-width: 100%;
}

.pd-expanded-desc {
    margin: 1.5rem 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pd-expanded-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.variant-select-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.btn-quick-view {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-quick-view:hover {
    background: var(--color-gold);
    color: #fff;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-control label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Loading Overlay --- */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(245, 130, 32, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-gold);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

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