
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #C9A962;
    --gold-light: #E8DCC4;
    --gold-dark: #A68B3D;
    --black: #0C0C0C;
    --black-light: #151515;
    --black-medium: #1C1C1C;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F8F6F3;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D4D4D4;
    --gray-500: #8A8A8A;
    --gray-600: #666666;
    --gray-800: #2D2D2D;
    --success: #1B7D46;
    --whatsapp: #25D366;
    --error: #DC3545;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

p {
    font-size: 16px;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==================== HEADER ==================== */
.top-bar {
    background: var(--black);
    color: var(--gold);
    text-align: center;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.nav {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-icon {
    position: relative;
    padding: 8px;
    cursor: pointer;
}

.cart-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A962' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 800px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.2s;
}

.hero-label::before,
.hero-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-label span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 76px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.4s;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 50px;
    line-height: 1.9;
    max-width: 500px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.6s;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.8s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(201, 169, 98, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1FAF54;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.4);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--gray-300);
}

.btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==================== TRUST BADGES ==================== */
.trust-section {
    background: var(--cream);
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.trust-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: 0;
}

.trust-text p {
    font-size: 12px;
    color: var(--gray-500);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.7s ease-out backwards;
}

.section-header .label {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 550px;
    margin: 0 auto;
    font-weight: 500;
}

/* ==================== COLLECTIONS ==================== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--black);
    animation: fadeInUp 0.7s ease-out backwards;
    border-radius: 4px;
}

.collection-card:nth-child(1) { animation-delay: 0.1s; }
.collection-card:nth-child(2) { animation-delay: 0.25s; }
.collection-card:nth-child(3) { animation-delay: 0.4s; }

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
}

.collection-card:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.collection-card h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.collection-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-weight: 500;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-link {
    color: var(--gold-light);
}

.collection-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.collection-card:hover .collection-link svg {
    transform: translateX(5px);
}

/* ==================== PRODUCTS ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
    border-radius: 4px;
    overflow: hidden;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.15);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--black);
    color: var(--gold);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.product-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    gap: 10px;
}

.product-card:hover .product-hover {
    opacity: 1;
}

.product-hover .btn {
    flex: 1;
    padding: 14px;
    font-size: 10px;
}

.product-body {
    padding: 25px;
}

.product-brand {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
    line-height: 1.5;
    height: 48px;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price .current {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
}

.product-price .old {
    font-size: 15px;
    color: var(--gray-500);
    text-decoration: line-through;
    font-weight: 500;
}

/* ==================== PRODUCT DETAIL ==================== */
.product-page {
    padding: 60px 0 100px;
}

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

.gallery {
    position: sticky;
    top: 120px;
}

.gallery-main {
    aspect-ratio: 1;
    background: var(--gray-100);
    margin-bottom: 15px;
    overflow: hidden;
}

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

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.thumb {
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s;
    background: var(--gray-100);
}

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

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

.product-info {
    padding: 20px 0;
}

.product-info .brand-tag {
    display: inline-block;
    background: var(--black);
    color: var(--gold);
    padding: 8px 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.product-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--black);
}

.product-info .price-display {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
}

.product-info .price-display small {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
    margin-left: 8px;
}

/* Quality Selection */
.quality-section {
    margin-bottom: 35px;
}

.quality-section > label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.quality-options {
    display: flex;
    gap: 15px;
}

.quality-option {
    flex: 1;
    padding: 20px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.quality-option:hover {
    border-color: var(--gold);
}

.quality-option.selected {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201,169,98,0.08) 0%, rgba(201,169,98,0.03) 100%);
}

.quality-option .q-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
}

.quality-option .q-price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.quality-option .q-desc {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
}

/* Quantity */
.qty-section {
    margin-bottom: 35px;
}

.qty-section > label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.qty-control {
    display: inline-flex;
    border: 1px solid var(--gray-200);
}

.qty-control button {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.qty-control button:hover {
    background: var(--gold);
    color: var(--black);
}

.qty-control input {
    width: 70px;
    height: 50px;
    border: none;
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
}

/* Action Buttons */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.product-actions .btn {
    width: 100%;
    padding: 20px;
    font-size: 12px;
}

/* COD Info */
.cod-box {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.cod-box svg {
    width: 45px;
    height: 45px;
    color: var(--success);
    flex-shrink: 0;
}

.cod-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--success);
}

.cod-box p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Product Features */
.product-features {
    border-top: 1px solid var(--gray-200);
    padding-top: 30px;
}

.product-features h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
    color: var(--gray-600);
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==================== ORDER FORM ==================== */
.order-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-modal.active {
    display: flex;
}

.order-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.order-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-header {
    background: var(--black);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.order-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--white);
}

.order-header p {
    font-size: 13px;
    color: var(--gold);
}

.order-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.order-close:hover {
    opacity: 1;
}

.order-body {
    padding: 35px;
}

.order-product {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.order-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: var(--gray-100);
}

.order-product-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.order-product-info .quality {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.order-product-info .price {
    font-size: 18px;
    font-weight: 700;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.form-group label .required {
    color: var(--error);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--gray-300);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group input.error {
    border-color: var(--error);
}

.form-group .error-msg {
    font-size: 12px;
    color: var(--error);
    margin-top: 6px;
    display: none;
}

.form-group input.error + .error-msg {
    display: block;
}

.phone-input {
    display: flex;
}

.phone-prefix {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-right: none;
    padding: 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
    min-width: 90px;
}

.phone-prefix select {
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    padding: 16px 5px;
    cursor: pointer;
    outline: none;
}

.phone-input input {
    border-left: none !important;
}

.order-total {
    background: var(--cream);
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-total strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.order-submit {
    width: 100%;
    padding: 20px;
    background: var(--success);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.order-submit:hover {
    background: #156438;
    transform: translateY(-2px);
}

.order-submit:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    transform: none;
}

.order-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--gray-500);
}

.order-note svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 5px;
}

/* ==================== ORDER LOADER ==================== */
#orderLoader {
    position: fixed;
    inset: 0;
    z-index: 10002;
}

#orderLoader .loader-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

#orderLoader .loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#orderLoader .loader-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

#orderLoader .loader-spinner svg {
    width: 100%;
    height: 100%;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

#orderLoader p {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================== SUCCESS MODAL ==================== */
.success-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.success-overlay.active {
    opacity: 1;
}

.success-modal {
    background: var(--white);
    max-width: 500px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1B7D46, #25a55b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 30px;
    box-shadow: 0 15px 40px rgba(27, 125, 70, 0.3);
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}

@keyframes successPop {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 50px;
    height: 50px;
}

.success-icon .checkmark {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheck 0.5s ease 0.6s forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.success-modal h2 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 15px;
    padding: 0 30px;
}

.success-modal .success-msg {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    padding: 0 30px;
    margin-bottom: 30px;
}

.success-details {
    background: var(--cream);
    padding: 25px 30px;
    margin: 0 30px 30px;
    border-radius: 8px;
}

.success-details .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.success-details .detail-row:last-child {
    border-bottom: none;
}

.success-details .detail-row span {
    font-size: 13px;
    color: var(--gray-500);
}

.success-details .detail-row strong {
    font-size: 14px;
    color: var(--black);
    max-width: 60%;
    text-align: right;
}

.success-details .detail-row.total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--gold);
    border-bottom: none;
}

.success-details .detail-row.total strong {
    font-size: 22px;
    color: var(--gold-dark);
}

.success-actions {
    padding: 0 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.success-actions .btn {
    width: 100%;
}

/* ==================== CART PAGE ==================== */
.cart-page {
    padding: 80px 0;
    min-height: 70vh;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
}

.page-title h1 {
    font-size: 42px;
}

.cart-empty {
    text-align: center;
    padding: 100px 20px;
}

.cart-empty svg {
    width: 100px;
    height: 100px;
    color: var(--gray-300);
    margin-bottom: 30px;
}

.cart-empty h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cart-empty p {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.cart-item-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: var(--gray-100);
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-details .quality {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.cart-item-details .price {
    font-size: 20px;
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item-remove:hover {
    color: var(--error);
}

.cart-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.cart-summary {
    background: var(--cream);
    padding: 35px;
}

.cart-summary h3 {
    font-size: 22px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-300);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    border-top: 2px solid var(--gray-300);
    margin-top: 15px;
    padding-top: 20px;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 25px;
}

/* ==================== CHECKOUT PAGE ==================== */
.checkout-page {
    padding: 80px 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
}

.checkout-form h2 {
    font-size: 26px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.checkout-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.checkout-summary {
    background: var(--cream);
    padding: 35px;
}

.checkout-summary h3 {
    font-size: 20px;
    margin-bottom: 25px;
}

.checkout-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-300);
}

.checkout-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    background: var(--white);
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.checkout-item-info .quality {
    font-size: 11px;
    color: var(--gold-dark);
}

.checkout-item-info .qty {
    font-size: 11px;
    color: var(--gray-500);
}

.checkout-item-price {
    font-weight: 700;
    font-size: 14px;
}

/* ==================== POLICY PAGES ==================== */
.policy-page {
    padding: 80px 0;
    min-height: 60vh;
}

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

.policy-header h1 {
    font-size: 42px;
    color: var(--black);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.policy-content h2 {
    font-size: 28px;
    color: var(--black);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.policy-content h3 {
    font-size: 20px;
    color: var(--black);
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 18px;
}

.policy-content strong {
    color: var(--black);
    font-weight: 600;
}

.policy-footer {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 50px 0;
    }

    .policy-header h1 {
        font-size: 32px;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .policy-content h2 {
        font-size: 22px;
    }

    .policy-content h3 {
        font-size: 18px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 25px;
    display: inline-block;
}

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

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

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--gold);
}

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

.footer-col li {
    margin-bottom: 12px;
}

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

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ==================== WHATSAPP FLOAT ==================== */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.wa-float a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px 15px 20px;
    background: var(--whatsapp);
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s;
    animation: waPulse 2s infinite;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.wa-float a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
    flex-shrink: 0;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.6); }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s;
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

.testimonial-badge svg {
    width: 14px;
    height: 14px;
}

/* ==================== POLICIES ==================== */
.policies-section {
    background: var(--black);
    padding: 60px 0;
}

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

.policy-item {
    text-align: center;
    color: var(--white);
}

.policy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.policy-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.policy-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }

    .hero-content {
        padding: 0 40px;
    }

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

    .product-grid {
        gap: 50px;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-sidebar,
    .checkout-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

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

    .testimonial-card {
        padding: 30px;
    }

    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 15px 20px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0;
    }

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

    .hero h1 {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 14px;
    }

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

    .hero-btns .btn {
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .collection-card {
        height: 350px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-body {
        padding: 15px;
    }

    .product-name {
        font-size: 12px;
        height: auto;
    }

    .product-price .current {
        font-size: 15px;
    }

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

    .gallery {
        position: static;
    }

    .product-info h1 {
        font-size: 28px;
    }

    .quality-options {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item-img {
        width: 100%;
        height: 200px;
    }

    .cart-item-actions {
        flex-direction: row;
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
    }

    .wa-float a {
        padding: 12px 18px 12px 15px;
        font-size: 12px;
    }

    .wa-float svg {
        width: 24px;
        height: 24px;
    }

    .order-content {
        max-height: 100vh;
    }

    .order-body {
        padding: 25px;
    }
}
