/* ========================================
   Pure Drop Honey - Design System
   Inspired by HoneyVeda.in
   Pure HTML/CSS/JavaScript
   ======================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Color Palette */
    --bg-primary: #FFF9F2;
    --bg-secondary: #FFEED7;
    --bg-tertiary: #FFF3E8;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-footer: #211D1D;

    /* Text Colors */
    --text-primary: #211D1D;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --text-white: #FFFFFF;

    /* Accent Colors */
    --accent-gold: #FFC107;
    --accent-amber: #FFA000;
    --accent-honey: #FFB74D;
    --accent-honey-dark: #E69500;
    --accent-success: #4CAF50;
    --accent-error: #F44336;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;

    /* Typography */
    --font-heading: 'Averia Serif Libre', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;

    /* Container */
    --container-max: 1300px;
    --container-padding: 24px;
}

/* ===== CSS RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: var(--leading-normal);
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-md);
}

.text-gold {
    color: var(--accent-gold);
}

.text-amber {
    color: var(--accent-amber);
}

.text-muted {
    color: var(--text-muted);
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 249, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.15);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    gap: var(--space-lg);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
}

.logo__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo__icon svg {
    width: 24px;
    height: 24px;
}

.logo__text span {
    color: var(--accent-gold);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__list {
    display: flex;
    gap: var(--space-lg);
}

.nav__link {
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-normal);
}

.nav__link:hover,
.nav__link.active {
    color: var(--accent-gold);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.header__btn:hover {
    background: var(--bg-secondary);
    color: var(--accent-gold);
}

.header__btn svg {
    width: 20px;
    height: 20px;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--accent-gold);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
    display: none;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-selector__btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    font-size: var(--text-sm);
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.lang-selector__btn:hover {
    background: var(--bg-secondary);
    color: var(--accent-gold);
}

.lang-selector__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--space-sm);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
}

.lang-selector:hover .lang-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-selector__item {
    display: block;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.lang-selector__item:hover {
    background: var(--bg-secondary);
    color: var(--accent-gold);
}

.lang-selector__item:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lang-selector__item:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    padding: var(--space-xl);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    z-index: var(--z-fixed);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav__link {
    display: block;
    font-size: var(--text-lg);
    font-weight: 500;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
    color: var(--accent-gold);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(var(--space-4xl) + 60px) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--accent-gold);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero__title span {
    color: var(--accent-gold);
    display: block;
}

.hero__welcome {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    z-index: 1;
}

.hero__image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: var(--text-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn--primary {
    background: var(--text-primary);
    color: white;
}

.btn--primary:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn--secondary:hover {
    background: var(--text-primary);
    color: white;
}

.btn--gold {
    background: var(--accent-gold);
    color: white;
}

.btn--gold:hover {
    background: var(--accent-amber);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-base);
}

.btn--sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-xs);
}

.btn--full {
    width: 100%;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--space-4xl) 0;
}

.section--alt {
    background: var(--bg-secondary);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--accent-gold);
    color: white;
    font-size: var(--text-xs);
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
}

.product-card__badge--dark {
    background: var(--text-primary);
}

.product-card__content {
    padding: var(--space-lg);
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.product-card__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: var(--leading-relaxed);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.product-card__price {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent-amber);
}

.product-card__price-old {
    font-size: var(--text-sm);
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: var(--space-sm);
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.benefit-card {
    text-align: center;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-card__icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.benefit-card__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card__quote {
    font-size: 48px;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.testimonial-card__text {
    font-size: var(--text-base);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: var(--leading-relaxed);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-card__location {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.testimonial-card__stars {
    color: var(--accent-gold);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--bg-footer) 100%);
    color: white;
    text-align: center;
}

.newsletter__title {
    color: white;
    margin-bottom: var(--space-sm);
}

.newsletter__text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.newsletter__form {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter__input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter__input:focus {
    outline: 2px solid var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-footer);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-icon svg {
    width: 20px;
    height: 20px;
}

.footer__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__title {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    color: var(--accent-gold);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--accent-gold);
}

.footer__bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copy {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer__powered {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer__powered a {
    color: var(--accent-gold);
    transition: color var(--transition-fast);
}

.footer__powered a:hover {
    color: var(--accent-honey);
}

/* Telegram Button */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: #0088cc;
    color: white;
    font-weight: 600;
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.telegram-btn:hover {
    background: #0077b5;
    transform: translateY(-2px);
}

.telegram-btn svg {
    width: 16px;
    height: 16px;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: var(--z-modal-backdrop);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer__header {
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
}

.cart-drawer__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.cart-drawer__close:hover {
    background: var(--bg-secondary);
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
}

.cart-drawer__empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    color: var(--text-muted);
}

.cart-drawer__empty-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item__image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__details {
    flex: 1;
}

.cart-item__name {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.cart-item__price {
    color: var(--accent-amber);
    font-weight: 600;
}

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.cart-item__qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--bg-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.cart-item__qty-btn:hover {
    background: var(--bg-secondary);
}

.cart-item__remove {
    color: var(--text-muted);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.cart-item__remove:hover {
    color: var(--accent-error);
}

.cart-drawer__footer {
    padding: var(--space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-tertiary);
}

.cart-drawer__total {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cart-drawer__total-amount {
    color: var(--accent-amber);
}

/* ===== SEARCH MODAL ===== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 249, 242, 0.98);
    z-index: var(--z-modal);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal__inner {
    width: 100%;
    max-width: 600px;
    padding: 0 var(--space-lg);
}

.search-modal__close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.search-modal__close:hover {
    background: var(--bg-secondary);
}

.search-modal__form {
    position: relative;
}

.search-modal__input {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    padding-right: 60px;
    font-size: var(--text-xl);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    background: white;
}

.search-modal__input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}

.search-modal__submit {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.search-modal__submit:hover {
    background: var(--accent-amber);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    background: white;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: var(--accent-error);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

.form-success {
    background: #E8F5E9;
    color: var(--accent-success);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: calc(var(--space-4xl) + 60px) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.page-header__title {
    margin-bottom: var(--space-md);
}

.page-header__subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h3 {
    margin-bottom: var(--space-md);
}

.about-text p {
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

.about-list {
    margin-top: var(--space-lg);
}

.about-list__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.about-list__icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 193, 7, 0.2);
    color: var(--accent-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-list__icon svg {
    width: 14px;
    height: 14px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info__item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
}

.contact-info__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.contact-info__text {
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-auto {
    margin-top: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        max-width: none;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter__form {
        flex-direction: column;
    }

    h1 {
        font-size: var(--text-4xl);
    }

    h2 {
        font-size: var(--text-3xl);
    }

    h3 {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }

    .header__btn {
        width: 36px;
        height: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .btn--lg {
        padding: var(--space-md) var(--space-lg);
    }

    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }
}

/* ===== PRINT STYLES ===== */
/* ===== VIDEO HERO SECTION ===== */
.video-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 73px;
}

.video-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(33, 29, 29, 0.7) 0%,
            rgba(255, 193, 7, 0.3) 100%);
    z-index: 2;
}

.video-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-xl);
    max-width: 800px;
}

.video-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.video-hero__tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.video-hero__text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    line-height: var(--leading-relaxed);
}

.video-hero__audio-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 193, 7, 0.9);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
}

.video-hero__audio-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 193, 7, 0.5);
}

.video-hero__audio-btn.playing {
    background: var(--accent-amber);
    animation: pulse 2s infinite;
}

.video-hero__audio-btn svg {
    width: 24px;
    height: 24px;
}

.video-hero__audio-btn .btn-text {
    white-space: nowrap;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 193, 7, 0.7);
    }
}

.video-hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    animation: bounce 2s infinite;
}

.video-hero__scroll svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Video Hero Responsive */
@media (max-width: 768px) {
    .video-hero {
        height: 70vh;
        min-height: 400px;
    }

    .video-hero__content {
        padding: var(--space-md);
    }

    .video-hero__audio-btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-sm);
    }
}

@media print {

    .header,
    .footer,
    .cart-drawer,
    .search-modal,
    .mobile-nav {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}