/* Front-end Stylesheet for Lamwaw Luxury Abayas */
:root {
    --primary: #2D1F1E;
    --primary-light: #4A3432;
    --accent: #CCA59E;
    --accent-dark: #BFA094;
    --gold: #D4AF37;
    --bg-cream: #FDF8F7;
    --bg-white: #FFFFFF;
    --text-dark: #2D1F1E;
    --text-muted: #8C7A78;
    --border-light: #EADCDA;
    --shadow-soft: 0 10px 30px rgba(45, 31, 30, 0.05);
    --shadow-medium: 0 15px 40px rgba(45, 31, 30, 0.08);
}

/* Base resets & styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-cream);
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typographic hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* ============================================================
   Header & Navigation — Premium Redesign
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 248, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(234, 220, 218, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
}

/* WordPress Admin Bar Compatibility */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}


.site-header.scrolled {
    padding: 0;
    background: rgba(253, 248, 247, 0.97);
    box-shadow: 0 4px 30px rgba(45, 31, 30, 0.06);
    border-bottom-color: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.scrolled .header-container {
    height: 70px;
}

/* ── Logo + Brand Name Group ─────────────────────── */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo-wrap img, .logo-wrap .custom-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2.5px solid var(--accent);
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(204, 165, 158, 0.2);
    transition: all 0.4s ease;
}

.logo-wrap img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(204, 165, 158, 0.35);
}

.site-header.scrolled .logo-wrap img,
.site-header.scrolled .logo-wrap .custom-logo {
    height: 48px;
    width: 48px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    transition: font-size 0.3s ease;
}

.site-header.scrolled .brand-name {
    font-size: 16px;
}

.brand-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── Main Navigation (Center) ────────────────────── */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.main-navigation li a {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--primary);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: block;
}

.main-navigation li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-navigation li a:hover {
    color: var(--accent);
    background: rgba(204, 165, 158, 0.08);
}

.main-navigation li a:hover::after {
    width: 24px;
}

/* ── Header Actions (Left side in RTL) ───────────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cart-icon-btn {
    font-size: 20px;
    color: var(--primary);
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(234, 220, 218, 0.2);
    transition: all 0.3s ease;
}

.cart-icon-btn:hover {
    background: rgba(204, 165, 158, 0.15);
    color: var(--accent);
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-cream);
    box-shadow: 0 2px 8px rgba(204, 165, 158, 0.3);
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-cream);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    border: 1.5px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(45, 31, 30, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.contact-btn i {
    font-size: 15px;
}

.contact-btn:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
    transform: translateY(-1px);
}

/* ── Mobile Nav Toggle ───────────────────────────── */
.mobile-nav-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-nav-toggle:hover {
    background: rgba(234, 220, 218, 0.3);
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 75% 30%, rgba(204, 165, 158, 0.15) 0%, rgba(253, 248, 247, 1) 70%), var(--bg-cream);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #FAF0EE 0%, #FAF4F3 100%);
    z-index: -1;
    border-bottom-left-radius: 200px;
    box-shadow: inset 10px -10px 40px rgba(45, 31, 30, 0.02);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-content h2.sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-content h2.sub-title::after {
    content: '';
    width: 50px;
    height: 1.5px;
    background: var(--accent);
    display: inline-block;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.hero-content p.description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.8;
}

.hero-meta-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(234, 220, 218, 0.8);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(45, 31, 30, 0.02);
    transition: all 0.3s ease;
}

.meta-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    background: #fff;
}

.meta-badge i {
    color: var(--accent);
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.hero-image-container {
    width: 100%;
    max-width: 440px;
    height: 560px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(45, 31, 30, 0.18), 0 0 50px rgba(204, 165, 158, 0.25);
    border: 4px solid var(--bg-white);
    position: relative;
    animation: float-luxury 6s ease-in-out infinite;
}

@keyframes float-luxury {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.15, 0.85, 0.45, 1);
}

.hero-image-container:hover img {
    transform: scale(1.08);
}


.hero-img-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    color: var(--bg-cream);
    padding: 15px 28px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(45,31,30,0.25) !important;
    z-index: 10;
    border: 2px solid var(--accent) !important;
    backdrop-filter: blur(10px);
}

.hero-img-badge h4 {
    color: var(--accent) !important;
    font-size: 11px;
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-img-badge .price {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Tajawal', sans-serif;
    color: #FFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Feature Details Section */
.details-section {
    padding: 120px 0;
    background-color: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px auto;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    padding: 0 20px 25px 20px;
}

.section-header h2::after {
    content: '⚜️';
    font-size: 16px;
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    background: var(--bg-white);
    padding: 0 15px;
    z-index: 2;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1.5px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    z-index: 1;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.detail-card {
    background: linear-gradient(145deg, #ffffff 0%, #FDF8F7 100%);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(234, 220, 218, 0.5);
    box-shadow: 0 10px 30px rgba(45, 31, 30, 0.015);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(45, 31, 30, 0.08);
    border-color: var(--accent);
}

.detail-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #FFFFFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    font-size: 26px;
    color: var(--accent);
    box-shadow: 0 8px 20px rgba(204, 165, 158, 0.15);
    border: 2px dashed rgba(204, 165, 158, 0.4);
    outline: 6px solid var(--bg-cream);
    transition: all 0.4s ease;
}

.detail-card:hover .detail-icon {
    transform: scale(1.1) rotate(8deg);
    background: var(--accent);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(204, 165, 158, 0.3);
}

.detail-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}


.detail-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Call to action & Order Section */
.purchase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.purchase-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(204, 165, 158, 0.03);
}

.purchase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.purchase-content h2 {
    color: var(--bg-cream) !important;
    font-size: 36px;
    margin-bottom: 20px;
}

.purchase-content p {
    color: #C0B0AE;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.price-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.price-box span.label {
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-box .price-amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--bg-cream);
}

.price-box .shipping-label {
    font-size: 14px;
    color: var(--accent);
    margin-top: 5px;
    font-weight: 500;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-luxury {
    background: var(--accent);
    color: var(--primary);
    padding: 16px 38px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--accent);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(204, 165, 158, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.btn-luxury::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(35deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: -1;
}

.btn-luxury:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 10px 30px rgba(204, 165, 158, 0.1);
    transform: translateY(-2px);
}

.btn-luxury:hover::after {
    left: 120%;
    opacity: 1;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
    border-color: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.1);
}

.purchase-card-wrapper {
    background: var(--bg-white);
    padding: 50px 45px;
    border-radius: 28px;
    color: var(--text-dark);
    box-shadow: 0 30px 70px rgba(45, 31, 30, 0.08);
    border: 1px solid rgba(234, 220, 218, 0.5);
    position: relative;
}

.purchase-card-wrapper h3 {
    font-size: 22px;
    margin-bottom: 25px;
    border-bottom: 1.5px solid var(--bg-cream);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.purchase-form-group {
    margin-bottom: 22px;
}

.purchase-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--primary);
}

.purchase-form-group input, .purchase-form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    background: #FAF8F7;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    color: var(--primary);
}

.purchase-form-group input:focus, .purchase-form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(204, 165, 158, 0.2);
}

/* Sizing link style */
.size-chart-link {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    margin-top: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.size-chart-link:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 31, 30, 0.03);
    aspect-ratio: 1 / 1.25;
    background: var(--bg-white);
    border: 1px solid rgba(234, 220, 218, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.15, 0.85, 0.45, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(45, 31, 30, 0.95) 0%, rgba(45, 31, 30, 0.3) 65%, transparent 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: var(--bg-cream);
    transform: translateY(15px);
    transition: transform 0.4s ease-out;
}

.gallery-item:hover .gallery-overlay-text {
    transform: translateY(0);
}

.gallery-overlay-text h4 {
    color: var(--bg-cream) !important;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-overlay-text p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

.gallery-tailoring-item {
    aspect-ratio: 1.63 / 1 !important;
}


/* Enhancing standard gallery items as well */
.gallery-item {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid rgba(204, 165, 158, 0);
    border-radius: 24px;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 31, 30, 0.12);
}

.gallery-item:hover::after {
    border-color: rgba(204, 165, 158, 0.4);
    box-shadow: inset 0 0 0 1px rgba(204, 165, 158, 0.4);
}


/* Instagram Feed Section */
.instagram-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.instagram-section .insta-handle {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.insta-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.insta-item .insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 31, 30, 0.7);
    color: #fff;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* Footer Features */
.features-bar {
    padding: 60px 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.features-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-bar-item i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 15px;
}

.feature-bar-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-bar-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: #C0B0AE;
    padding: 80px 0 30px 0;
    font-size: 15px;
}

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

.footer-widget h3 {
    color: var(--bg-white) !important;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-widget p {
    line-height: 1.8;
}

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

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

.footer-widget ul li a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

/* Sizing Chart Modal Drawer */
.size-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 31, 30, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.size-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.size-modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.size-modal.active .size-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: var(--primary);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}

.size-table th {
    background: var(--bg-cream);
    color: var(--primary);
    padding: 12px;
    font-weight: 700;
    border: 1px solid var(--border-light);
}

.size-table td {
    padding: 12px;
    border: 1px solid var(--border-light);
}

.size-table tr:nth-child(even) {
    background: #FAF9F9;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-grid, .purchase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image-wrap {
        order: -1;
    }
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    .hero-section::before {
        display: none;
    }
    .hero-meta-badges {
        justify-content: center;
    }
    .details-grid, .features-bar-grid {
        grid-template-columns: 1fr;
    }
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Header tablet adjustments */
    .brand-tagline {
        display: none;
    }
    .main-navigation li a {
        padding: 6px 10px;
        font-size: 13px;
    }
    .main-navigation ul {
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .header-container {
        height: 72px;
    }
    .site-header.scrolled .header-container {
        height: 62px;
    }
    .logo-wrap img, .logo-wrap .custom-logo {
        height: 46px;
        width: 46px;
    }
    .brand-name {
        font-size: 15px;
    }
    .brand-tagline {
        display: none;
    }
    .contact-btn {
        display: none !important;
    }
    .header-actions {
        gap: 10px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .hero-content h1 {
        font-size: 26px !important;
    }
    .hero-content h2.sub-title {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }
    .hero-meta-badges {
        gap: 8px;
    }
    .meta-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    .button-group {
        flex-direction: column;
        width: 100%;
    }
    .button-group .btn-luxury {
        width: 100%;
        justify-content: center;
    }
    .detail-card {
        padding: 30px 20px;
    }
    .purchase-card-wrapper {
        padding: 25px 20px !important;
    }
    .purchase-content h2 {
        font-size: 28px !important;
    }
    .purchase-content p {
        font-size: 15px !important;
    }
    .price-box .price-amount {
        font-size: 32px !important;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .gallery-tailoring-item {
        aspect-ratio: 1 / 1.25 !important;
    }
    .size-modal-content {
        padding: 30px 15px !important;
        width: 92% !important;
    }
    .size-table th, .size-table td {
        padding: 8px 5px !important;
        font-size: 12px !important;
    }
    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 22px !important;
    }
    .purchase-content h2 {
        font-size: 24px !important;
    }
    .size-table th, .size-table td {
        padding: 6px 3px !important;
        font-size: 11px !important;
    }
}


/* ============================================================
   Mobile Navigation Drawer
   ============================================================ */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(45, 31, 30, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--bg-white);
    z-index: 2000;
    box-shadow: -8px 0 30px rgba(45, 31, 30, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

body.mobile-nav-open .mobile-nav-drawer {
    right: 0;
}

body.mobile-nav-open {
    overflow: hidden;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-title {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--primary);
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: var(--accent);
    color: var(--bg-white);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 1px solid rgba(234, 220, 218, 0.3);
    transition: all 0.2s ease;
}

.mobile-nav-links a i {
    width: 22px;
    text-align: center;
    color: var(--accent);
    font-size: 17px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    background: var(--bg-cream);
    padding-right: 30px;
    color: var(--accent);
}

.mobile-nav-links a.mobile-whatsapp {
    margin: 15px 20px 0;
    background: #25D366;
    color: #fff;
    border-radius: 12px;
    justify-content: center;
    border: none;
    padding: 14px 20px;
    font-weight: 700;
}

.mobile-nav-links a.mobile-whatsapp i {
    color: #fff;
}

.mobile-nav-links a.mobile-whatsapp:hover {
    background: #1DA851;
    padding-right: 20px;
    color: #fff;
}

/* ============================================================
   WooCommerce – Cart, Checkout, My Account (Luxury Overrides)
   ============================================================ */

/* ── Shared WooCommerce page wrapper ───────────────────────── */
.woocommerce,
.woocommerce-page {
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: 70vh;
    background: var(--bg-cream);
}

/* ── WooCommerce page headings ─────────────────────────────── */
.woocommerce h1,
.woocommerce h2,
.woocommerce-page h1,
.woocommerce-page h2 {
    font-family: 'Tajawal', sans-serif;
    color: var(--primary);
}

/* ── Notices (success / error / info) ──────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--bg-white) !important;
    color: var(--primary) !important;
    border-top: 3px solid var(--accent) !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: var(--shadow-soft) !important;
    font-family: 'Tajawal', sans-serif !important;
    padding: 15px 25px !important;
    margin-bottom: 25px !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
    background: var(--accent) !important;
    color: var(--primary) !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 8px 20px !important;
    font-family: 'Tajawal', sans-serif !important;
}

/* ── Cart Table ─────────────────────────────────────────────── */
.woocommerce table.shop_table {
    border-collapse: collapse !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: var(--bg-white) !important;
    font-family: 'Tajawal', sans-serif !important;
}

.woocommerce table.shop_table th {
    background: var(--primary) !important;
    color: var(--bg-cream) !important;
    font-weight: 700 !important;
    padding: 15px 20px !important;
    text-align: right !important;
    border: none !important;
}

.woocommerce table.shop_table td {
    padding: 18px 20px !important;
    border-color: var(--border-light) !important;
    vertical-align: middle !important;
}

.woocommerce table.shop_table tr:hover td {
    background: rgba(253, 248, 247, 0.8) !important;
}

/* Product image in cart */
.woocommerce table.cart td.product-thumbnail img {
    border-radius: 10px !important;
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
}

/* Cart quantity input */
.woocommerce .quantity input.qty {
    border: 1px solid var(--border-light) !important;
    border-radius: 8px !important;
    padding: 8px !important;
    font-family: 'Tajawal', sans-serif !important;
    font-size: 15px !important;
    width: 65px !important;
    text-align: center !important;
}

/* Cart totals box */
.woocommerce .cart_totals,
.woocommerce-page .cart_totals {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: var(--shadow-soft) !important;
}

.woocommerce .cart_totals h2 {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid var(--border-light) !important;
}

/* ── Buttons (Add to cart, Checkout, Update) ────────────────── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce button.button.alt {
    background-color: var(--accent) !important;
    color: var(--primary) !important;
    border-radius: 25px !important;
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 12px 28px !important;
    border: 2px solid var(--accent) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(204, 165, 158, 0.2) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover {
    background-color: var(--primary) !important;
    color: var(--accent) !important;
    border-color: var(--primary) !important;
}

/* Proceed to checkout / Place order */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce #place_order {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background: var(--primary) !important;
    color: var(--bg-cream) !important;
    border-color: var(--primary) !important;
    font-size: 17px !important;
    padding: 16px !important;
    border-radius: 12px !important;
    margin-top: 15px !important;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #place_order:hover {
    background: var(--accent) !important;
    color: var(--primary) !important;
    border-color: var(--accent) !important;
}

/* ── Checkout form ──────────────────────────────────────────── */
.woocommerce form .form-row {
    margin-bottom: 18px !important;
}

.woocommerce form .form-row label {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    font-size: 14px !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: 1px solid var(--border-light) !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    font-family: 'Tajawal', sans-serif !important;
    font-size: 15px !important;
    background: var(--bg-cream) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none !important;
    border-color: var(--accent) !important;
    background: var(--bg-white) !important;
    box-shadow: 0 0 0 3px rgba(204, 165, 158, 0.15) !important;
}

/* Checkout order review box */
#order_review,
.woocommerce-checkout-review-order {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: var(--shadow-soft) !important;
}

/* Payment box */
#payment {
    background: var(--bg-cream) !important;
    border-radius: 16px !important;
    padding: 25px !important;
    border: 1px solid var(--border-light) !important;
}

/* ── My Account page ────────────────────────────────────────── */
.woocommerce-MyAccount-navigation {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    padding: 20px 0 !important;
    box-shadow: var(--shadow-soft) !important;
    overflow: hidden !important;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block !important;
    padding: 12px 25px !important;
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    border-right: 3px solid transparent !important;
    transition: all 0.3s ease !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--bg-cream) !important;
    border-right-color: var(--accent) !important;
    color: var(--accent) !important;
    font-weight: 700 !important;
}

.woocommerce-MyAccount-content {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: var(--shadow-soft) !important;
    font-family: 'Tajawal', sans-serif !important;
}

/* ── Product single page – WooCommerce default add-to-cart ── */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: var(--bg-cream) !important;
    border-radius: 8px 8px 0 0 !important;
    border-color: var(--border-light) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--bg-white) !important;
    border-bottom-color: var(--bg-white) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
}

/* ── Responsive cart/checkout ───────────────────────────────── */
@media (max-width: 768px) {
    .woocommerce,
    .woocommerce-page {
        padding-top: 90px;
    }

    .woocommerce table.shop_table th,
    .woocommerce table.shop_table td {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }

    .woocommerce .cart_totals,
    .woocommerce-page .cart_totals,
    #order_review,
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        padding: 20px !important;
    }
}

/* ============================================================
   Floating WhatsApp Button
   ============================================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    background: #1DA851;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   WooCommerce Checkout Fields Customization
   ============================================================ */

/* 1. Hide Postcode fields completely (both classic checkout and Checkout Block) */
#billing_postcode_field,
#shipping_postcode_field,
.wc-block-components-address-form__postcode,
.wc-block-components-checkout-step__postcode,
div[data-name="billing-postcode"],
div[data-name="shipping-postcode"],
.wc-block-components-text-input[autocomplete="postal-code"],
input[name*="postcode"],
input[id*="postcode"],
input[autocomplete="postal-code"] {
    display: none !important;
}

/* 2. Hide "Use the same address for billing" checkbox and "Ship to different address" toggle */
.wc-block-checkout__billing-address-same-as-shipping,
.wc-block-checkout__billing-address-checkbox,
#ship-to-different-address,
.woocommerce-shipping-fields__field-wrapper,
#ship-to-different-address-heading,
.woocommerce-shipping-fields {
    display: none !important;
}

