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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ast-global-color-0: #000000;
    --ast-global-color-2: #000000;
    --ast-global-color-3: rgba(0, 0, 0, 0.46);
    --ast-global-color-4: #f6f6f6;
    --ast-global-color-6: rgba(0, 0, 0, 0.14);
    --gold-light: #dca54a;
    --gold-dark: #d09a40;
}

body {
    font-family: 'Cairo', 'Montserrat', sans-serif;
    color: var(--ast-global-color-3);
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* RTL Support */
html[dir="rtl"],
body[dir="rtl"],
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .header-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .work-office-container {
    direction: rtl;
}

[dir="rtl"] .work-office-content {
    text-align: right;
}

[dir="rtl"] .floating-badge {
    left: 30px;
    right: auto;
}

[dir="rtl"] .button-enhanced i,
.button-enhanced i {
    order: -1;
}

[dir="rtl"] .button-enhanced:hover i,
.button-enhanced:hover i {
    transform: translateX(-5px);
}

[dir="rtl"] .nav-list a::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .nav-list a:hover::after,
[dir="rtl"] .nav-list a.active::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .cart-count {
    left: -5px;
    right: auto;
}

[dir="rtl"] .section-label {
    flex-direction: row-reverse;
}

[dir="rtl"] .features-list {
    justify-content: flex-end;
}

[dir="rtl"] .product-grid {
    direction: rtl;
}

[dir="rtl"] .footer-widget-column a::before {
    content: '←';
    transform: translateX(10px);
}

[dir="rtl"] .footer-widget-column a:hover {
    padding-left: 15px;
    padding-right: 0;
}

[dir="rtl"] .footer-widget-column a:hover::before {
    transform: translateX(0);
}

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

ul {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--ast-global-color-2);
    direction: rtl;
    text-align: right;
}

/* Additional Styles for Laravel Integration */
.logo-text {
    font-family: 'Cairo', 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--ast-global-color-2);
    direction: rtl;
}

.action-link {
    color: #ffffff;
    padding: 8px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.action-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.main-nav-secondary {
    display: none; /* Hide secondary nav if not needed */
}


/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    order: 1;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--ast-global-color-2);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    order: 2;
    flex-shrink: 0;
}

.site-branding img {
    max-width: 120px;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', 'Cairo', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--ast-global-color-2);
    white-space: nowrap;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    order: 3;
}

.nav-list {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    color: var(--ast-global-color-2);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    position: relative;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold-light);
    transition: width 0.3s ease;
    right: auto;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold-light);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    order: 4;
    flex-shrink: 0;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
}

.search-button:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
    background-color: rgba(220, 165, 74, 0.05);
}

.search-text {
    display: inline-block;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ast-global-color-2);
    padding: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.cart-link:hover {
    color: var(--gold-light);
    background-color: rgba(220, 165, 74, 0.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.action-link.user-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ast-global-color-2);
    padding: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 18px;
}

.action-link.user-link:hover {
    color: var(--gold-light);
    background-color: rgba(220, 165, 74, 0.05);
}

/* Hero Section */
.hero-section {
    background-image: url('https://websitedemos.net/clothing-store-02/wp-content/uploads/sites/1447/2024/03/bg-01.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    color: #ffffff;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-top: 17.5%;
    padding-bottom: 10%;
    padding-left: 17.5%;
    padding-right: 17.5%;
    text-align: center;
}

.hero-content h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-content h1 {
    font-family: 'Cairo', 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 75px;
    line-height: 1.2em;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    color: #ffffff;
    direction: rtl;
    text-align: center;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.65em;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Buttons */
.button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    padding: 19px 32px;
    border-radius: 0;
    font-family: 'Cairo', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gold-light);
    box-shadow: 0 2px 8px rgba(220, 165, 74, 0.2);
    position: relative;
    overflow: hidden;
}

.button::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;
}

.button:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    color: #ffffff;
    border-color: var(--gold-dark);
    box-shadow: 0 4px 16px rgba(220, 165, 74, 0.4);
    transform: translateY(-2px);
}

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

.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 165, 74, 0.3);
}

/* Products Section */
.most-popular-products,
.newest-products {
    padding: 120px 24px 71px 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Section Header - Innovative Design */
.most-popular-products .section-header,
.newest-products .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.most-popular-products .section-label,
.newest-products .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 16px;
}

.most-popular-products .label-line,
.newest-products .label-line {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.most-popular-products .label-text,
.newest-products .label-text {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
}

.most-popular-products .section-title,
.newest-products .section-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4em;
    color: var(--ast-global-color-2);
    margin: 0;
    position: relative;
    direction: rtl;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.most-popular-products .title-highlight,
.newest-products .title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Legacy Support - Keep old h2 styles for backward compatibility */
.most-popular-products h2:not(.section-title),
.newest-products h2:not(.section-title) {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4em;
    text-transform: none;
    font-style: normal;
    margin: 0 0 60px 0;
    color: var(--ast-global-color-2);
    padding: 0;
    direction: rtl;
    text-align: center;
    position: relative;
}

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

/* Mobile - Force 2 columns */
@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
}

/* ===== Professional Product Card Design ===== */
.product-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    isolation: isolate;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(220, 165, 74, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 24px 60px rgba(220, 165, 74, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 165, 74, 0.3);
}

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

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

/* Product Image Container */
.product-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    aspect-ratio: 1 / 1;
    border-radius: 24px 24px 0 0;
}

.product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.15) 0%, rgba(208, 154, 64, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-link::before {
    opacity: 0.7;
}

.product-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

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

/* Quick Action Buttons */
.product-actions {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

[dir="rtl"] .product-actions {
    flex-direction: row-reverse;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.product-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 165, 74, 0.2);
}

.product-badge.sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border-color: transparent;
}

.product-wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--ast-global-color-2);
}

.product-wishlist-btn:hover {
    background: var(--gold-light);
    color: #ffffff;
    border-color: var(--gold-light);
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 20px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.product-category {
    font-size: 11px;
    color: var(--gold-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.8px;
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.1) 0%, rgba(208, 154, 64, 0.08) 100%);
    border-radius: 20px;
    align-self: center;
    border: 1px solid rgba(220, 165, 74, 0.2);
}

.product-info h3 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.5em;
    margin: 0;
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info h3 a {
    color: var(--ast-global-color-2);
    transition: color 0.3s ease;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info h3 a:hover {
    color: var(--gold-light);
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.product-attributes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.size-options {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option {
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: var(--ast-global-color-3);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 36px;
    border-radius: 0;
    position: relative;
}

.size-option:hover {
    background-color: var(--gold-light);
    color: #ffffff;
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(220, 165, 74, 0.3);
}

.size-option.active {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    border-color: var(--gold-dark);
    box-shadow: 0 2px 8px rgba(220, 165, 74, 0.3);
    font-weight: 600;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.color-option:hover {
    border-color: var(--gold-light);
    border-width: 2px;
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(220, 165, 74, 0.2);
}

.color-option.selected {
    border-color: var(--gold-dark);
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(220, 165, 74, 0.3);
    transform: scale(1.1);
}

/* Bag Collection Banner */
.bag-collection-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    min-height: 100vh;
    padding: 120px 24px;
    background-image: url('https://websitedemos.net/clothing-store-02/wp-content/uploads/sites/1447/2024/03/bg-03.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.bag-collection-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--ast-global-color-4) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.65;
    z-index: 1;
}

.bag-collection-banner .banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
}

.bag-collection-banner .banner-image-container {
    display: flex;
    align-items: center;
    width: 50%;
    padding-left: 144px;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.bag-collection-banner .banner-image-box {
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
}

.bag-collection-banner .banner-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition-duration: 0.3s;
}

.bag-collection-banner .banner-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    margin-top: -96px;
    padding-top: 0;
    padding-bottom: 120px;
    padding-left: 0;
    padding-right: 144px;
}

.bag-collection-banner .banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.15em;
    text-transform: capitalize;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-align: left;
}

.bag-collection-banner .banner-button {
    margin-top: 36px;
    fill: #ffffff;
    color: #ffffff;
    border-style: solid;
    border-color: #ffffff;
    background-color: transparent;
    font-family: 'Cairo', sans-serif;
}

.bag-collection-banner .banner-button:hover,
.bag-collection-banner .banner-button:focus {
    background-color: var(--ast-global-color-4);
    color: var(--ast-global-color-2);
    border-color: var(--ast-global-color-4);
}

.bag-collection-banner .banner-button:hover svg,
.bag-collection-banner .banner-button:focus svg {
    fill: var(--ast-global-color-2);
}

/* Work & Office Attire Section */
.work-office-attire {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.work-office-attire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 165, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 165, 74, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.work-office-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.work-office-image-wrapper {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-office-image-wrapper:hover {
    transform: translateY(-10px);
}

.work-office-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://websitedemos.net/clothing-store-02/wp-content/uploads/sites/1447/2024/03/bg-005.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.3) 0%, rgba(208, 154, 64, 0.5) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.work-office-image-wrapper:hover .image-overlay {
    opacity: 0.6;
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--ast-global-color-2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-office-content {
    position: relative;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.label-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.label-text {
    font-family: 'Montserrat', 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
}

.section-title {
    font-family: 'Cairo', 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2em;
    color: var(--ast-global-color-2);
    margin: 0;
    position: relative;
    direction: rtl;
    text-align: right;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-description {
    font-size: 18px;
    line-height: 1.8em;
    color: var(--ast-global-color-3);
    margin: 0;
    max-width: 90%;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 10px 0;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(220, 165, 74, 0.1);
    border: 1px solid rgba(220, 165, 74, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(220, 165, 74, 0.15);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.feature-badge i {
    color: var(--gold-light);
    font-size: 16px;
}

.feature-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--ast-global-color-2);
}

.button-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(220, 165, 74, 0.3);
    position: relative;
    overflow: hidden;
    max-width: fit-content;
}

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

.button-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 165, 74, 0.4);
}

.button-enhanced:hover::before {
    left: 100%;
}

.button-enhanced i {
    transition: transform 0.3s ease;
}

.button-enhanced:hover i {
    transform: translateX(5px);
}

/* Fashion Reinvented Banner */
.fashion-reinvented-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 0 24px;
    background-image: url('https://websitedemos.net/clothing-store-02/wp-content/uploads/sites/1447/2024/03/bg-005.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    overflow: hidden;
}

.fashion-reinvented-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--ast-global-color-4) 50%, rgba(242, 41, 41, 0) 50%);
    opacity: 1;
    z-index: 1;
}

.fashion-banner-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding-top: 0;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 120px;
    background-color: var(--ast-global-color-4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.fashion-text {
    text-align: left;
    padding: 0;
    margin-bottom: 0;
}

.fashion-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.15em;
    text-transform: capitalize;
    font-style: italic;
    color: var(--ast-global-color-2);
    margin: 0 0 8px 0;
}

.fashion-text p {
    font-size: 16px;
    line-height: 1.65em;
    color: var(--ast-global-color-3);
    margin: 0 0 0 0;
}

.fashion-banner-content .button {
    margin-top: 24px;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 24px;
    background-image: url('https://websitedemos.net/clothing-store-02/wp-content/uploads/sites/1447/2024/03/bg-04.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.testimonial-card {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-top: 166px;
    padding-bottom: 166px;
    padding-left: 220px;
    padding-right: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px 0;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0;
}

.stars svg {
    width: 20px;
    height: 20px;
}

.testimonial-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 31px;
    line-height: 1.4em;
    text-transform: capitalize;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 0 0;
}

.testimonial-card h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

/* Features Section */
/* ===== Professional Features Section ===== */
.features-section {
    padding: 100px 24px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(220, 165, 74, 0.3) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Desktop - 4 columns - Must come after mobile media queries */
@media (min-width: 1025px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 32px !important;
    }
}

/* Tablet - Keep 4 columns */
@media (min-width: 768px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px !important;
    }
}

.feature-item {
    text-align: center;
    padding: 48px 32px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    isolation: isolate;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(220, 165, 74, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 24px 60px rgba(220, 165, 74, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 165, 74, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-icon {
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.1) 0%, rgba(208, 154, 64, 0.08) 100%);
    border-radius: 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(220, 165, 74, 0.15);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.15) 0%, rgba(208, 154, 64, 0.12) 100%);
    border-color: rgba(220, 165, 74, 0.3);
}

.feature-item:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold-light);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 2px 4px rgba(220, 165, 74, 0.2));
}

.feature-item:hover .feature-icon svg {
    color: var(--gold-dark);
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(220, 165, 74, 0.3));
}

.feature-item h4 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4em;
    color: var(--ast-global-color-2);
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-item:hover h4 {
    color: var(--gold-light);
}

.feature-item p {
    font-size: 15px;
    line-height: 1.7em;
    color: var(--ast-global-color-3);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.feature-item:hover p {
    color: var(--ast-global-color-2);
}

/* CTA Section */
.explore-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 24px;
    background-image: url('https://websitedemos.net/clothing-store-02/wp-content/uploads/sites/1447/2024/03/bg-04.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.explore-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-top: 166px;
    padding-bottom: 166px;
    padding-left: 220px;
    padding-right: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px 0;
}

.cta-content h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.15em;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.65em;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 60px;
    position: relative;
    z-index: 1;
}

.footer-widget-column {
    display: flex;
    flex-direction: column;
}

.footer-widget-column h2 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(220, 165, 74, 0.3);
    position: relative;
}

.footer-widget-column h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.footer-widget-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-widget-column ul li {
    margin: 0;
}

.footer-widget-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    position: relative;
}

.footer-widget-column a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--gold-light);
}

.footer-widget-column a:hover {
    color: var(--gold-light);
    padding-right: 15px;
}

.footer-widget-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info i {
    color: var(--gold-light);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    text-decoration: none;
}

.social-links a::before {
    display: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 165, 74, 0.3);
    padding-right: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 24px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
}

/* Scroll to Top Button */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(220, 165, 74, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(220, 165, 74, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 921px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn span {
        background-color: var(--ast-global-color-2);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 57vh;
        background-attachment: scroll;
    }

    .hero-content {
        padding-top: 27.5%;
        padding-bottom: 18.5%;
        padding-left: 12.5%;
        padding-right: 12.5%;
    }

    .most-popular-products,
    .newest-products {
        padding: 72px 24px 32px 24px;
    }

    .work-office-attire {
        padding: 80px 0;
    }

    .work-office-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
    }

    .work-office-image-wrapper {
        height: 500px;
        order: 2;
    }

    .work-office-content {
        order: 1;
    }

    .section-title {
        font-size: 48px;
    }

    .section-description {
        max-width: 100%;
    }

    .bag-collection-banner {
        padding: 72px 24px;
        min-height: auto;
        background-attachment: scroll;
    }

    .bag-collection-banner .banner-image-container {
        padding-left: 24px;
    }

    .bag-collection-banner .banner-text-container {
        margin-top: -72px;
        padding-bottom: 96px;
        padding-right: 24px;
    }

    .bag-collection-banner .banner-button {
        margin-top: 24px;
    }

    .fashion-reinvented-banner {
        min-height: 56vh;
    }

    .fashion-banner-content {
        width: 50%;
        padding-top: 0;
        padding-bottom: 168px;
        padding-left: 0;
        padding-right: 48px;
    }

    .fashion-banner-content .button {
        margin-top: 24px;
    }

    .testimonials-section {
        background-attachment: scroll;
    }

    .testimonial-card {
        padding-top: 144px;
        padding-bottom: 140px;
        padding-left: 72px;
        padding-right: 72px;
    }

    .features-section {
        padding: 80px 24px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 32px !important;
    }

    .feature-item {
        padding: 40px 28px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 36px;
        height: 36px;
    }

    .feature-item h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .explore-cta {
        background-attachment: scroll;
    }

    .cta-content {
        padding-top: 144px;
        padding-bottom: 140px;
        padding-left: 72px;
        padding-right: 72px;
    }
}

@media (max-width: 921px) {
    .site-header {
        position: sticky;
        background-color: rgba(255, 255, 255, 0.98);
    }

    .header-container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 20px;
    }

    [dir="rtl"] .header-container {
        flex-direction: row;
    }

    .mobile-menu-btn {
        display: flex;
        order: 1;
    }

    [dir="rtl"] .mobile-menu-btn {
        order: 3;
    }

    .site-branding {
        order: 2;
        flex: 1;
        justify-content: flex-start;
    }

    [dir="rtl"] .site-branding {
        justify-content: flex-end;
    }

    .site-branding img {
        max-width: 100px;
    }

    .header-actions {
        order: 3;
        gap: 10px;
    }

    .main-nav {
        order: 4;
        width: 100%;
        flex: 1 1 100%;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid var(--ast-global-color-6);
        margin-top: 10px;
    }

    .nav-list.active {
        display: flex;
        position: static;
        box-shadow: none;
        border-top: none;
        margin-top: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--ast-global-color-6);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        color: var(--ast-global-color-2);
        padding: 15px 20px;
        display: block;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .nav-list a::after {
        display: none;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background-color: var(--ast-global-color-4);
        color: var(--gold-light);
        padding-left: 30px;
    }

    .search-text {
        display: none;
    }

    .search-button {
        padding: 8px;
        border: none;
    }

    .hero-section {
        min-height: 57vh;
    }

    .hero-content {
        padding-top: 27.5%;
        padding-bottom: 18.5%;
        padding-left: 12.5%;
        padding-right: 12.5%;
    }

    .hero-content h1 {
        font-size: 54px;
    }

    .work-office-attire {
        padding: 60px 0;
    }

    .work-office-container {
        gap: 40px;
        padding: 0 20px;
    }

    .work-office-image-wrapper {
        height: 400px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-description {
        font-size: 16px;
    }

    .bag-collection-banner {
        padding: 72px 24px;
        min-height: auto;
        background-attachment: scroll;
    }

    .bag-collection-banner .banner-image-container {
        width: 50%;
        padding-left: 24px;
        padding-right: 0;
    }

    .bag-collection-banner .banner-text-container {
        width: 50%;
        margin-top: -72px;
        padding-bottom: 96px;
        padding-right: 24px;
    }

    .bag-collection-banner .banner-title,
    .fashion-text h3 {
        font-size: 32px;
    }

    .bag-collection-banner .banner-button {
        margin-top: 24px;
    }

    .most-popular-products,
    .newest-products {
        padding: 72px 24px 32px 24px;
    }

    .most-popular-products .section-header,
    .newest-products .section-header {
        margin-bottom: 50px;
    }

    .most-popular-products .section-title,
    .newest-products .section-title {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 48px;
    }

    .testimonial-card {
        padding-top: 144px;
        padding-bottom: 140px;
        padding-left: 72px;
        padding-right: 72px;
    }

    .testimonial-card h4 {
        font-size: 26px;
    }

    .features-section {
        padding: 80px 24px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 32px !important;
    }

    .feature-item {
        padding: 40px 28px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 36px;
        height: 36px;
    }

    .feature-item h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 14px;
    }

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

    .footer-widget-column h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-info li {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    /* Header Mobile */
    .site-header {
        padding: 12px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .header-container {
        padding: 0 16px;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        order: 1;
    }

    [dir="rtl"] .mobile-menu-btn {
        order: 1;
    }

    .site-branding {
        order: 2;
        flex: 1;
        justify-content: center;
        min-width: 0;
    }

    [dir="rtl"] .site-branding {
        justify-content: center;
    }

    .site-branding img {
        max-width: 100px;
        height: auto;
    }

    .logo-text {
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-actions {
        order: 3;
        gap: 8px;
        flex-shrink: 0;
    }

    .search-button {
        padding: 8px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .search-button svg {
        width: 18px;
        height: 18px;
    }

    .cart-link,
    .action-link.user-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-link svg,
    .action-link.user-link i {
        width: 18px;
        height: 18px;
    }

    .main-nav {
        order: 4;
        width: 100%;
        flex: 1 1 100%;
        display: none;
        margin-top: 0;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

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

    .nav-list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin: 0;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        color: var(--ast-global-color-2);
        padding: 18px 20px;
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        letter-spacing: 0;
        word-spacing: 0;
    }

    [dir="rtl"] .nav-list a:hover,
    [dir="rtl"] .nav-list a.active {
        padding-left: 30px;
        padding-right: 20px;
    }

    .nav-list a::after {
        display: none;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background-color: rgba(220, 165, 74, 0.1);
        color: var(--gold-light);
        padding-right: 30px;
    }

    [dir="rtl"] .nav-list a:hover,
    [dir="rtl"] .nav-list a.active {
        padding-left: 30px;
        padding-right: 20px;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: 60vh;
        padding: 0;
        background-attachment: scroll;
        background-position: center;
    }

    .hero-content {
        padding: 80px 20px 40px;
        text-align: center;
    }

    .hero-content h6 {
        font-size: 11px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.4em;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7em;
        margin-bottom: 28px;
        padding: 0;
        max-width: 100%;
    }

    .button {
        padding: 14px 32px;
        font-size: 12px;
        letter-spacing: 1px;
        width: auto;
        min-width: 200px;
    }

    /* Products Section Mobile */
    .most-popular-products,
    .newest-products {
        padding: 50px 16px 30px;
    }

    .most-popular-products .section-header,
    .newest-products .section-header {
        margin-bottom: 40px;
    }

    .most-popular-products .section-title,
    .newest-products .section-title {
        font-size: 26px;
    }

    .most-popular-products .label-text,
    .newest-products .label-text {
        font-size: 10px;
    }

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

    .product-card {
        border-radius: 20px;
        box-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.06),
            0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .product-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 
            0 20px 50px rgba(220, 165, 74, 0.18),
            0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .product-link {
        border-radius: 20px 20px 0 0;
    }

    .product-actions {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .product-badge {
        padding: 5px 12px;
        font-size: 10px;
    }

    .product-wishlist-btn {
        width: 36px;
        height: 36px;
    }

    .product-info {
        padding: 18px 16px;
        gap: 12px;
    }

    .product-category {
        font-size: 10px;
        padding: 4px 12px;
        letter-spacing: 1.2px;
    }

    .product-info h3 {
        font-size: 15px;
        min-height: 44px;
        line-height: 1.4em;
    }

    .product-price {
        font-size: 19px;
    }

    .product-link {
        margin-bottom: 12px;
        border-radius: 12px 12px 0 0;
        overflow: hidden;
    }

    .product-link img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
    }

    .product-info {
        padding: 0 12px 12px;
        gap: 6px;
    }

    .product-category {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .product-info h3 {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .product-info h3 a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-price {
        font-size: 15px;
        font-weight: 700;
        color: var(--gold-light);
    }

    /* Work Office Section Mobile */
    .work-office-attire {
        padding: 50px 0;
    }

    .work-office-container {
        gap: 30px;
        padding: 0 16px;
        grid-template-columns: 1fr;
    }

    .work-office-image-wrapper {
        height: 280px;
        border-radius: 16px;
        order: 2;
    }

    .work-office-content {
        order: 1;
        text-align: center;
    }

    .floating-badge {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 12px;
    }

    [dir="rtl"] .floating-badge {
        left: 15px;
        right: auto;
    }

    .badge-icon {
        font-size: 18px;
    }

    .badge-text {
        font-size: 11px;
    }

    .section-label {
        gap: 8px;
        margin-bottom: 12px;
    }

    .label-text {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3em;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.7em;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .features-list {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 24px;
    }

    .feature-badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .button-enhanced {
        padding: 14px 28px;
        font-size: 12px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 50px 16px !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .feature-item {
        padding: 28px 16px !important;
        border-radius: 18px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .feature-item:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .feature-icon {
        width: 56px !important;
        height: 56px !important;
        margin: 0 auto 16px !important;
        border-radius: 14px !important;
    }

    .feature-icon svg {
        width: 26px !important;
        height: 26px !important;
    }

    .feature-item h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
        line-height: 1.4em !important;
    }

    .feature-item p {
        font-size: 12px !important;
        line-height: 1.6em !important;
        margin: 0 !important;
    }

    /* CTA Section Mobile */
    .explore-cta {
        min-height: 50vh;
        padding: 50px 16px;
        background-attachment: scroll;
    }

    .cta-content {
        padding: 0;
        text-align: center;
    }

    .cta-content h6 {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .cta-content h2 {
        font-size: 28px;
        line-height: 1.3em;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 14px;
        line-height: 1.7em;
        margin-bottom: 28px;
    }

    .bag-collection-banner {
        padding: 40px 16px;
        min-height: auto;
    }

    .bag-collection-banner .banner-container {
        flex-direction: column;
        gap: 20px;
    }

    .bag-collection-banner .banner-image-container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .bag-collection-banner .banner-text-container {
        width: 100%;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .bag-collection-banner .banner-title {
        font-size: 24px;
        line-height: 1.3em;
        text-align: center;
        margin-bottom: 20px;
    }

    .bag-collection-banner .banner-button {
        margin-top: 0;
    }

    .fashion-reinvented-banner {
        min-height: 50vh;
        padding: 40px 16px;
    }

    .fashion-reinvented-banner::before {
        background: linear-gradient(180deg, var(--ast-global-color-4) 0%, rgba(242, 41, 41, 0) 100%);
    }

    .fashion-banner-content {
        width: 100%;
        padding-top: 0;
        padding-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
        background-color: transparent;
        text-align: center;
        align-items: center;
    }

    .fashion-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .fashion-text h3 {
        font-size: 24px;
        line-height: 1.3em;
        margin-bottom: 12px;
    }

    .fashion-text p {
        font-size: 14px;
        line-height: 1.6em;
    }

    .fashion-banner-content .button {
        margin-top: 0;
    }

    .testimonials-section {
        padding: 40px 16px;
    }

    .testimonial-card {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .testimonial-card h4 {
        font-size: 18px;
        line-height: 1.5em;
    }

    .testimonial-card h6 {
        font-size: 13px;
        margin-top: 16px;
    }

    .stars {
        margin-bottom: 20px;
    }

    .stars svg {
        width: 18px;
        height: 18px;
    }

    .features-section {
        padding: 40px 12px !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .feature-item {
        padding: 32px 20px !important;
        border-radius: 18px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .feature-item:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 16px !important;
        border-radius: 16px !important;
    }

    .feature-icon svg {
        width: 28px !important;
        height: 28px !important;
    }

    .feature-item h4 {
        font-size: 17px !important;
        margin-bottom: 10px !important;
        line-height: 1.4em !important;
    }

    .feature-item p {
        font-size: 13px !important;
        line-height: 1.6em !important;
        margin: 0 !important;
    }

    .explore-cta {
        min-height: 50vh;
        padding: 40px 16px;
    }

    .cta-content {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .cta-content h6 {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .cta-content h2 {
        font-size: 28px;
        line-height: 1.2em;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 14px;
        line-height: 1.6em;
        margin-bottom: 24px;
    }
}

@media (max-width: 544px) {
    /* Extra Small Mobile */
    .header-container {
        padding: 10px 12px;
        gap: 8px;
    }

    .site-branding img {
        max-width: 85px;
    }

    .logo-text {
        font-size: 16px;
    }

    .mobile-menu-btn {
        width: 32px;
        height: 32px;
    }

    .search-button,
    .cart-link,
    .action-link.user-link {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    /* Hero Section */
    .hero-section {
        min-height: 55vh;
    }

    .hero-content {
        padding: 60px 16px 30px;
    }

    .hero-content h6 {
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.35em;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.65em;
        margin-bottom: 24px;
    }

    .button {
        padding: 12px 24px;
        font-size: 11px;
        min-width: 180px;
    }

    /* Products */
    .most-popular-products,
    .newest-products {
        padding: 40px 12px 25px;
    }

    .most-popular-products .section-header,
    .newest-products .section-header {
        margin-bottom: 35px;
    }

    .most-popular-products .section-title,
    .newest-products .section-title {
        font-size: 22px;
    }

    .most-popular-products .label-text,
    .newest-products .label-text {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .most-popular-products .label-line,
    .newest-products .label-line {
        flex: 0 0 30px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-card:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .product-link {
        border-radius: 16px 16px 0 0;
    }

    .product-actions {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .product-badge {
        padding: 4px 10px;
        font-size: 9px;
    }

    .product-wishlist-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .product-info {
        padding: 14px 12px;
        gap: 10px;
    }

    .product-category {
        font-size: 9px;
        padding: 3px 10px;
    }

    .product-info h3 {
        font-size: 14px;
        min-height: 40px;
    }

    .product-price {
        font-size: 17px;
    }

    /* Work Office */
    .work-office-attire {
        padding: 40px 0;
    }

    .work-office-container {
        gap: 25px;
        padding: 0 12px;
    }

    .work-office-image-wrapper {
        height: 240px;
        border-radius: 12px;
    }

    .floating-badge {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
    }

    [dir="rtl"] .floating-badge {
        left: 12px;
        right: auto;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.35em;
    }

    .section-description {
        font-size: 13px;
        line-height: 1.65em;
    }

    .features-list {
        flex-direction: column;
        gap: 8px;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    .button-enhanced {
        padding: 12px 24px;
        font-size: 11px;
        max-width: 100%;
    }

    /* Features */
    .features-section {
        padding: 36px 12px !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .feature-item {
        padding: 28px 16px !important;
        border-radius: 16px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .feature-item:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .feature-icon {
        width: 56px !important;
        height: 56px !important;
        margin: 0 auto 14px !important;
        border-radius: 14px !important;
    }

    .feature-icon svg {
        width: 26px !important;
        height: 26px !important;
    }

    .feature-item h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
        line-height: 1.4em !important;
    }

    .feature-item p {
        font-size: 12px !important;
        line-height: 1.6em !important;
        margin: 0 !important;
    }

    /* CTA */
    .explore-cta {
        min-height: 45vh;
        padding: 40px 12px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .bag-collection-banner {
        padding: 32px 12px;
    }

    .bag-collection-banner .banner-title {
        font-size: 20px;
    }

    .fashion-reinvented-banner {
        padding: 32px 12px;
        min-height: 40vh;
    }

    .fashion-text h3 {
        font-size: 20px;
    }

    .fashion-text p {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 32px 12px;
    }

    .testimonial-card h4 {
        font-size: 16px;
    }

    .features-section {
        padding: 32px 12px !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .feature-item {
        padding: 24px 14px !important;
        border-radius: 16px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .feature-item:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .feature-icon {
        width: 52px !important;
        height: 52px !important;
        margin: 0 auto 12px !important;
        border-radius: 12px !important;
    }

    .feature-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    .feature-item h4 {
        font-size: 15px !important;
        margin-bottom: 6px !important;
        line-height: 1.4em !important;
    }

    .feature-item p {
        font-size: 11px !important;
        line-height: 1.6em !important;
        margin: 0 !important;
    }

    .explore-cta {
        padding: 32px 12px;
        min-height: 40vh;
    }

    .cta-content {
        padding: 32px 12px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .site-footer {
        padding: 60px 0 0;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 16px 50px;
    }

    .footer-widget-column h2 {
        font-size: 19px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .footer-widget-column a {
        font-size: 14px;
    }

    .contact-info {
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-info li {
        font-size: 14px;
    }

    .contact-info i {
        font-size: 16px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 20px 16px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

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

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
        padding-left: 0;
        padding-right: 24px;
        align-items: flex-start;
    }

    .bag-collection-banner .banner-title {
        text-align: left;
    }

    .bag-collection-banner .banner-title,
    .fashion-text h3 {
        font-size: 26px;
    }

    .bag-collection-banner .banner-button {
        margin-top: 24px;
    }

    .fashion-reinvented-banner::before {
        background-image: linear-gradient(90deg, var(--ast-global-color-4) 0%, rgba(242, 41, 41, 0) 0%);
    }

    .fashion-banner-content {
        padding-top: 90px;
    }

    .most-popular-products,
    .newest-products {
        padding: 48px 24px 6px 24px;
    }

    .most-popular-products .section-header,
    .newest-products .section-header {
        margin-bottom: 40px;
    }

    .most-popular-products .section-title,
    .newest-products .section-title {
        font-size: 26px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .testimonial-card {
        padding-top: 72px;
        padding-bottom: 72px;
        padding-left: 0;
        padding-right: 0;
    }

    .testimonial-card h4 {
        font-size: 23px;
    }

    .features-section {
        padding: 72px 24px 68px 24px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

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

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

/* Tablet and Desktop - Width adjustments */
@media (min-width: 768px) {
    .fashion-banner-content {
        width: 50%;
    }
}

/* Desktop - Fixed Background Attachment and Layout */
@media (min-width: 1025px) {
    /* Desktop - 4 columns for products */
    .product-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px;
    }

    /* Desktop - 4 columns for features */
    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 32px !important;
    }

    .site-header {
        position: sticky;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .footer-widgets {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
        padding: 0 24px 80px;
    }

    .site-footer {
        padding: 100px 0 0;
    }
}

    .main-nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        position: static;
        background-color: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    .nav-list li {
        border-bottom: none;
    }

    .nav-list a {
        color: var(--ast-global-color-2);
        padding: 10px 18px;
        display: block;
        font-size: 15px;
    }

    .nav-list a::after {
        display: block;
    }

    .nav-list a:hover {
        background-color: transparent;
        color: var(--gold-light);
        padding-left: 18px;
    }

    .site-branding {
        flex-shrink: 0;
    }

    .site-branding img {
        max-width: 120px;
    }

    .header-actions {
        flex-shrink: 0;
    }

    .search-button,
    .cart-link,
    .action-link.user-link {
        color: var(--ast-global-color-2);
    }

    .search-button:hover,
    .cart-link:hover,
    .action-link.user-link:hover {
        color: var(--gold-light);
    }

    .hero-section {
        background-attachment: fixed;
    }

    /* Desktop enhancements for work-office-attire */
    @media (min-width: 1025px) {
        .work-office-attire {
            padding: 140px 0;
        }

        .work-office-container {
            gap: 100px;
        }

        .work-office-image-wrapper {
            height: 650px;
        }
    }

    .bag-collection-banner {
        background-attachment: fixed;
    }

    .fashion-reinvented-banner {
        background-attachment: scroll;
    }

    .testimonials-section {
        background-attachment: fixed;
    }

    .explore-cta {
        background-attachment: fixed;
    }

    .most-popular-products,
    .newest-products {
        padding: 120px 24px 71px 24px;
    }

    .most-popular-products .section-header,
    .newest-products .section-header {
        margin-bottom: 60px;
    }

    .most-popular-products .section-title,
    .newest-products .section-title {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Touch Improvements */
@media (max-width: 767px) {
    /* Improve touch targets */
    .button {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(220, 165, 74, 0.2);
    }

    .size-option {
        min-height: 40px;
        min-width: 40px;
        touch-action: manipulation;
    }

    .nav-list a {
        min-height: 50px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: rgba(220, 165, 74, 0.1);
    }

    .search-button,
    .cart-link,
    .action-link.user-link {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(220, 165, 74, 0.2);
    }

    .mobile-menu-btn {
        -webkit-tap-highlight-color: rgba(220, 165, 74, 0.2);
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Prevent text selection on buttons */
    .button,
    .size-option,
    .mobile-menu-btn,
    .search-button,
    .cart-link {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Improve image loading */
    img {
        loading: lazy;
    }

    /* Better focus states for accessibility */
    .button:focus,
    .size-option:focus,
    .nav-list a:focus,
    .search-button:focus,
    .cart-link:focus {
        outline: 2px solid var(--gold-light);
        outline-offset: 2px;
    }

    /* Prevent zoom on input focus */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Improve scrolling performance */
    .site-header,
    .nav-list {
        will-change: transform;
    }

    /* Better spacing for mobile */
    section {
        scroll-margin-top: 70px;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .most-popular-products .section-header,
    .newest-products .section-header {
        margin-bottom: 30px;
    }

    .most-popular-products .section-title,
    .newest-products .section-title {
        font-size: 20px;
    }

    .most-popular-products .label-text,
    .newest-products .label-text {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .most-popular-products .label-line,
    .newest-products .label-line {
        flex: 0 0 25px;
    }

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

    .bag-collection-banner .banner-title {
        font-size: 18px;
    }

    .fashion-text h3 {
        font-size: 18px;
    }

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

/* ============================================
   Page Header Section (Common for all pages)
   ============================================ */
.page-header-section {
    padding: 32px 24px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header-section h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    color: var(--ast-global-color-2);
    margin: 0 0 6px 0;
    font-family: 'Cairo', sans-serif;
}

.page-header-section p {
    font-size: 13px;
    color: var(--ast-global-color-3);
    margin: 0;
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    color: var(--ast-global-color-2);
    margin: 0 0 6px 0;
    font-family: 'Cairo', sans-serif;
}

.page-subtitle {
    font-size: 13px;
    color: var(--ast-global-color-3);
    line-height: 1.5em;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-intro-section {
    padding: 80px 24px;
    background: #ffffff;
}

.about-intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content-wrapper {
    padding: 0 20px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image-wrapper:hover .about-image img {
    transform: scale(1.05);
}

.about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.1) 0%, rgba(208, 154, 64, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .about-image .image-overlay {
    opacity: 1;
}

/* Our Values Section */
.our-values-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.our-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.values-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    padding: 48px 32px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    isolation: isolate;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: rgba(220, 165, 74, 0.08);
    border: 1px solid rgba(220, 165, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 32px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: rgba(220, 165, 74, 0.15);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.value-card p {
    font-size: 15px;
    color: var(--ast-global-color-3);
    line-height: 1.7em;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 100px 24px;
    background: #ffffff;
}

.mission-vision-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.05) 0%, rgba(208, 154, 64, 0.1) 100%);
    border-radius: 24px;
    border: 1px solid rgba(220, 165, 74, 0.2);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: rgba(220, 165, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 32px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 16px;
    font-family: 'Cairo', sans-serif;
}

.mission-card p {
    font-size: 16px;
    color: var(--ast-global-color-3);
    line-height: 1.7em;
}

/* Stats Section */
.about-stats-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    padding: 48px 32px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: var(--ast-global-color-3);
    font-weight: 600;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-page-section {
    padding: 80px 24px;
    background: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-section {
    padding: 0 20px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.contact-card {
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: rgba(220, 165, 74, 0.08);
    border: 1px solid rgba(220, 165, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 24px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.contact-card p {
    font-size: 15px;
    color: var(--ast-global-color-3);
    margin-bottom: 8px;
    line-height: 1.6em;
}

.contact-hours {
    display: block;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 600;
    margin-top: 12px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.social-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 24px;
    text-align: center;
    font-family: 'Cairo', sans-serif;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: var(--ast-global-color-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: var(--gold-light);
    color: #ffffff;
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 165, 74, 0.3);
}

.social-link-large i {
    font-size: 18px;
}

/* Contact Form */
.contact-form-section {
    padding: 0 20px;
}

.contact-form {
    margin-top: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    margin-bottom: 8px;
    font-family: 'Cairo', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: var(--ast-global-color-2);
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(220, 165, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .button-enhanced {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

/* Map Section */
.map-section {
    margin-top: 100px;
    padding: 0 20px;
}

.map-container {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ============================================
   Products Page Styles
   ============================================ */
.categories-filter-section {
    padding: 40px 24px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-tab {
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: var(--ast-global-color-3);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.filter-tab:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(220, 165, 74, 0.3);
}

.sort-options {
    display: flex;
    justify-content: center;
}

.sort-select {
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    color: var(--ast-global-color-2);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 18px center;
    padding-left: 45px;
    padding-right: 24px;
}

[dir="rtl"] .sort-select {
    background-position: right 18px center;
    padding-right: 45px;
    padding-left: 24px;
}

.sort-select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(220, 165, 74, 0.1);
}

.products-section {
    padding: 60px 24px;
    background: #ffffff;
}

.product-price-old {
    font-size: 16px;
    color: var(--ast-global-color-3);
    text-decoration: line-through;
    margin-right: 12px;
    font-weight: 400;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper .pagination li {
    display: inline-block;
}

.pagination-wrapper .pagination a,
.pagination-wrapper .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--ast-global-color-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.pagination-wrapper .pagination a:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.pagination-wrapper .pagination .active span {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(220, 165, 74, 0.3);
}

/* Container Utility */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Responsive Styles for New Pages
   ============================================ */
@media (max-width: 1024px) {
    .about-intro-grid,
    .mission-vision-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .contact-cards {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .page-header-section {
        padding: 28px 16px;
    }

    .page-header-section h1,
    .page-title {
        font-size: 20px;
    }

    .page-header-section p,
    .page-subtitle {
        font-size: 12px;
    }


    .about-intro-section,
    .our-values-section,
    .mission-vision-section,
    .about-stats-section {
        padding: 60px 16px;
    }

    .about-intro-grid {
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-card,
    .stat-card {
        padding: 32px 24px;
    }

    .mission-vision-grid {
        gap: 24px;
    }

    .mission-card {
        padding: 32px 24px;
    }

    .contact-page-section {
        padding: 60px 16px;
    }

    .contact-layout {
        gap: 40px;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 0;
    }

    .contact-cards {
        gap: 16px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .products-section {
        padding: 40px 16px;
    }

    .categories-filter-section {
        padding: 30px 16px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 10px 18px;
        font-size: 13px;
    }

    .stat-number {
        font-size: 36px;
    }

    .map-section {
        margin-top: 60px;
        padding: 0;
    }
}

@media (max-width: 544px) {
    .page-header-section {
        padding: 30px 12px;
    }

    .page-header-section h1,
    .page-title {
        font-size: 20px;
    }

    .page-header-section p,
    .page-subtitle {
        font-size: 12px;
    }

    .value-icon,
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .value-card h3,
    .mission-card h3 {
        font-size: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .social-links-large {
        flex-direction: column;
        align-items: stretch;
    }

    .social-link-large {
        justify-content: center;
    }
}

/* ============================================
   Product Purchase Page Styles - Redesigned
   ============================================ */
/* Breadcrumb - Innovative Modern Design */
.product-breadcrumb-modern {
    padding: 12px 24px;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    font-family: 'Cairo', sans-serif;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ast-global-color-3);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.breadcrumb-item:first-child {
    padding: 8px 12px;
    background: rgba(220, 165, 74, 0.1);
    color: var(--gold-light);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
    padding: 0;
}

.breadcrumb-item:first-child:hover {
    background: var(--gold-light);
    color: #ffffff;
    transform: scale(1.1);
}

.breadcrumb-item:not(:first-child):not(.active):hover {
    color: var(--gold-light);
    background: rgba(220, 165, 74, 0.08);
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: var(--ast-global-color-2);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.12) 0%, rgba(208, 154, 64, 0.08) 100%);
    border: 1px solid rgba(220, 165, 74, 0.2);
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb-item i {
    font-size: 14px;
}

.breadcrumb-arrow {
    display: flex;
    align-items: center;
    color: var(--ast-global-color-3);
    opacity: 0.3;
    padding: 0 4px;
    transition: all 0.3s ease;
}

.breadcrumb-arrow svg {
    width: 10px;
    height: 10px;
}

[dir="rtl"] .breadcrumb-arrow svg {
    transform: rotate(180deg);
}

.product-details-section {
    padding: 60px 24px 80px;
    background: #ffffff;
}

.product-details-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

/* Product Images */
.product-images-wrapper {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image-container {
    position: relative;
    margin-bottom: 20px;
}

.product-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    cursor: zoom-in;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.image-zoom-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--ast-global-color-2);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
}

.product-main-image:hover .image-zoom-btn {
    opacity: 1;
    transform: translateY(0);
}

.image-zoom-btn:hover {
    background: var(--gold-light);
    color: #ffffff;
    transform: scale(1.1);
}

[dir="rtl"] .image-zoom-btn {
    left: auto;
    right: 20px;
}

.product-badge-main {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 165, 74, 0.3);
}

[dir="rtl"] .product-badge-main {
    right: auto;
    left: 20px;
}

.product-thumbnails-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--ast-global-color-2);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thumbnail-nav:hover {
    background: var(--gold-light);
    color: #ffffff;
    border-color: var(--gold-light);
}

.thumbnail-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.thumbnail {
    position: relative;
    min-width: 80px;
    width: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(220, 165, 74, 0.3);
}

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

/* Product Info */
.product-info-wrapper {
    padding: 0 20px;
}

.product-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(220, 165, 74, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-category-badge i {
    font-size: 12px;
}

.product-share {
    display: flex;
    align-items: center;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(220, 165, 74, 0.1);
    border: none;
    color: var(--gold-light);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background: var(--gold-light);
    color: #ffffff;
    transform: scale(1.1);
}

.product-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--ast-global-color-2);
    margin-bottom: 24px;
    font-family: 'Cairo', sans-serif;
}

.product-price-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cairo', sans-serif;
}

.old-price {
    font-size: 24px;
    color: var(--ast-global-color-3);
    text-decoration: line-through;
    font-weight: 400;
}

.price-note {
    font-size: 14px;
    color: var(--ast-global-color-3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-note i {
    color: #10b981;
    font-size: 16px;
}

.discount-badge {
    padding: 4px 12px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-sku {
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    font-size: 14px;
}

.sku-label {
    color: var(--ast-global-color-3);
    margin-left: 8px;
}

.sku-value {
    color: var(--ast-global-color-2);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Product Features - Compact Design */
.product-features-compact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(220, 165, 74, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(220, 165, 74, 0.1);
    flex-wrap: wrap;
}

.feature-compact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ast-global-color-2);
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.feature-compact-item i {
    color: var(--gold-light);
    font-size: 14px;
}

.feature-compact-item span {
    font-size: 13px;
}

/* Product Meta */
.product-meta {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ast-global-color-3);
}

.meta-item i {
    color: var(--gold-light);
    font-size: 16px;
}

/* Product Form */
.product-form {
    margin-top: 40px;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-label i {
    color: var(--gold-light);
    font-size: 14px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.quantity-btn {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: none;
    color: var(--ast-global-color-2);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
}

.quantity-btn:hover {
    background: rgba(220, 165, 74, 0.1);
    color: var(--gold-light);
}

.quantity-input {
    width: 80px;
    height: 48px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    background: #ffffff;
    font-family: 'Cairo', sans-serif;
}

[dir="rtl"] .quantity-input {
    border-left: none;
    border-right: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.quantity-input:focus {
    outline: none;
}

/* Product Actions - Override card styles for product page */
.product-info-wrapper .product-actions {
    display: flex !important;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: all !important;
    z-index: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    visibility: visible !important;
}

.product-info-wrapper .product-actions .add-to-cart-btn {
    flex: 1;
    min-width: 200px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 165, 74, 0.3);
    font-family: 'Cairo', sans-serif;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

.product-info-wrapper .product-actions .add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 165, 74, 0.4);
}

.product-info-wrapper .product-actions .add-to-cart-btn:active {
    transform: translateY(0);
}

.product-info-wrapper .product-actions .add-to-cart-btn i {
    font-size: 16px;
}

.product-info-wrapper .product-actions .wishlist-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    visibility: visible !important;
    opacity: 1 !important;
}

.button-outline {
    background: transparent;
    border: 2px solid var(--gold-light);
    color: var(--gold-light);
}

.button-outline:hover {
    background: var(--gold-light);
    color: #ffffff;
}

/* Product Tabs */
.product-tabs-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.tabs-header {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.tab-btn {
    padding: 16px 32px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--ast-global-color-3);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    position: relative;
    bottom: -2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 14px;
}

.tab-btn:hover {
    color: var(--gold-light);
}

.tab-btn.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.tabs-content {
    min-height: 200px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.tab-panel-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 24px;
    font-family: 'Cairo', sans-serif;
}

.tab-panel-content {
    font-size: 16px;
    line-height: 1.8em;
    color: var(--ast-global-color-3);
}

.tab-panel-content p {
    margin-bottom: 16px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.spec-item {
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.spec-label {
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.spec-label i {
    font-size: 8px;
    color: var(--gold-light);
}

.spec-value {
    color: var(--ast-global-color-3);
    font-size: 15px;
}

.spec-unit {
    color: var(--gold-light);
    font-weight: 600;
    margin-right: 4px;
}

.no-content {
    text-align: center;
    padding: 40px 20px;
    color: var(--ast-global-color-3);
    font-style: italic;
}

/* Shipping Info */
.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.shipping-item {
    padding: 32px 24px;
    background: #fafafa;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.shipping-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.shipping-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: rgba(220, 165, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 28px;
}

.shipping-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.shipping-item p {
    font-size: 14px;
    color: var(--ast-global-color-3);
    line-height: 1.6em;
    margin: 0;
}

/* Responsive Product Purchase */
@media (max-width: 1024px) {
    .product-details-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-images-wrapper {
        position: relative;
        top: 0;
    }

    .product-info-wrapper {
        padding: 0;
    }

    .product-title {
        font-size: 36px;
    }

    .current-price {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .product-details-section {
        padding: 40px 16px 40px;
    }

    .product-details-layout {
        gap: 30px;
        margin-bottom: 40px;
    }

    .product-title {
        font-size: 28px;
    }

    .current-price {
        font-size: 28px;
    }

    .old-price {
        font-size: 18px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

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

    .product-actions .button {
        width: 100%;
        justify-content: center;
    }

    .related-products-section .section-title {
        font-size: 20px;
    }

    .tabs-header {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .product-tabs-wrapper {
        padding: 0;
    }

    .specs-table {
        font-size: 14px;
    }

    .spec-label,
    .spec-value {
        padding: 12px 16px;
    }

    .related-products-section .section-title {
        font-size: 18px;
        gap: 4px;
    }

    .product-details-section {
        padding: 30px 12px 30px;
    }

    .product-details-layout {
        gap: 24px;
        margin-bottom: 30px;
    }

    .related-products-section {
        padding: 30px 12px;
    }

    .related-products-section .section-header {
        margin-bottom: 24px;
    }

    .product-tabs-wrapper {
        padding: 0 12px;
    }
}

/* ============================================
   Floating Cart - Professional Design
   ============================================ */
.floating-cart-toggle {
    position: fixed;
    bottom: 80px;
    left: 24px;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .floating-cart-toggle {
    left: auto;
    right: 24px;
}

.floating-cart-button {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(220, 165, 74, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
    line-height: 1;
}

.floating-cart-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(220, 165, 74, 0.5);
}

.floating-cart-button:active {
    transform: translateY(-2px) scale(1.02);
}

.floating-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 28px;
    position: absolute;
    top: 40%;
    left: 42%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.floating-cart-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.floating-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 24px;
    height: 24px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    border: 2px solid #ffffff;
    font-family: 'Cairo', sans-serif;
}

[dir="rtl"] .floating-cart-count {
    right: auto;
    left: -4px;
}

.floating-cart-count:empty {
    display: none;
}

.floating-cart-count span {
    line-height: 1;
}

.floating-cart-notification {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.floating-cart-notification.show {
    opacity: 1;
    visibility: visible;
    bottom: 90px;
}

/* Floating Cart Modal */
.floating-cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cart-modal.active {
    opacity: 1;
    visibility: visible;
}

.floating-cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.floating-cart-slide-out {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    background: #ffffff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

[dir="rtl"] .floating-cart-slide-out {
    right: auto;
    left: 0;
    transform: translateX(-100%);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

.floating-cart-modal.active .floating-cart-slide-out {
    transform: translateX(0);
}

.floating-cart-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
}

/* Cart Header */
.floating-cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    flex-shrink: 0;
}

.floating-cart-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-cart-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: var(--ast-global-color-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.floating-cart-close:hover {
    background: rgba(220, 165, 74, 0.1);
    color: var(--gold-light);
    transform: rotate(90deg);
}

.floating-cart-close svg {
    width: 20px;
    height: 20px;
}

.floating-cart-title {
    flex: 1;
}

.floating-cart-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0 0 4px 0;
    font-family: 'Cairo', sans-serif;
}

.floating-cart-quantity {
    font-size: 14px;
    color: var(--ast-global-color-3);
    font-weight: 500;
}

/* Cart Items */
.floating-cart-items {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 24px;
    min-height: 0;
    flex-basis: 0;
}

.floating-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    min-height: 300px;
}

.floating-cart-empty.hidden {
    display: none;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    color: var(--ast-global-color-3);
    opacity: 0.3;
}

.floating-cart-empty p {
    font-size: 18px;
    color: var(--ast-global-color-3);
    margin-bottom: 24px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

/* Cart Item */
.floating-cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.floating-cart-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.floating-cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

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

.floating-cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.floating-cart-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.floating-cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Cairo', sans-serif;
}

.floating-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-cart-quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.floating-cart-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #ffffff;
    color: var(--ast-global-color-2);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
}

.floating-cart-qty-btn:hover {
    background: rgba(220, 165, 74, 0.1);
    color: var(--gold-light);
}

.floating-cart-qty-input {
    width: 50px;
    height: 32px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    background: #ffffff;
    font-family: 'Cairo', sans-serif;
}

[dir="rtl"] .floating-cart-qty-input {
    border-left: none;
    border-right: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.floating-cart-remove-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.floating-cart-remove-btn:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
}

.floating-cart-remove-btn svg {
    width: 16px;
    height: 16px;
}

/* Cart Footer */
.floating-cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.floating-cart-total {
    margin-bottom: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.total-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
}

.total-value {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cairo', sans-serif;
}

.floating-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.floating-cart-actions .button,
.floating-cart-actions .button-enhanced {
    width: 100% !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 48px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Floating Cart */
@media (max-width: 767px) {
    .floating-cart-toggle {
        bottom: 70px;
        left: 16px;
    }

    [dir="rtl"] .floating-cart-toggle {
        left: auto;
        right: 16px;
    }

    .floating-cart-button {
        width: 56px;
        height: 56px;
    }

    .floating-cart-icon {
        width: 24px;
        height: 24px;
    }

    .floating-cart-icon svg {
        width: 100%;
        height: 100%;
    }

    .floating-cart-count {
        min-width: 20px;
        height: 20px;
        font-size: 11px;
        top: -2px;
        right: -2px;
    }

    .floating-cart-slide-out {
        width: 100vw;
        max-width: 100vw;
    }

    .floating-cart-header {
        padding: 20px 16px;
    }

    .floating-cart-slide-out {
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }

    .floating-cart-panel {
        height: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .floating-cart-items {
        padding: 16px;
        padding-bottom: 20px;
        flex: 1 1 auto;
        min-height: 0;
        flex-basis: 0;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .floating-cart-footer {
        padding: 20px 16px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        margin: 0;
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        bottom: auto;
        z-index: 10;
        background: #ffffff;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        flex-shrink: 0;
        flex-grow: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .floating-cart-actions {
        width: 100%;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .floating-cart-actions .button,
    .floating-cart-actions .button-enhanced {
        width: 100% !important;
        min-height: 52px;
        font-size: 16px;
        padding: 14px 24px;
        margin: 0;
    }

    .floating-cart-panel {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
}

@media (max-width: 544px) {
    .floating-cart-toggle {
        bottom: 60px;
        left: 12px;
    }

    [dir="rtl"] .floating-cart-toggle {
        right: 12px;
    }

    .floating-cart-button {
        width: 52px;
        height: 52px;
    }

    .floating-cart-icon {
        width: 22px;
        height: 22px;
    }

    .floating-cart-icon svg {
        width: 100%;
        height: 100%;
    }

    .floating-cart-slide-out {
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }

    .floating-cart-panel {
        height: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .floating-cart-items {
        flex: 1 1 auto;
        min-height: 0;
        flex-basis: 0;
        padding-bottom: 16px;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .floating-cart-footer {
        padding: 16px 12px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        margin: 0;
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        bottom: auto;
        z-index: 10;
        background: #ffffff;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        flex-shrink: 0;
        flex-grow: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .floating-cart-actions {
        width: 100%;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .floating-cart-actions .button,
    .floating-cart-actions .button-enhanced {
        width: 100% !important;
        min-height: 50px;
        font-size: 15px;
        padding: 12px 20px;
        margin: 0;
    }
}

@media (max-width: 544px) {
    .product-title {
        font-size: 24px;
    }

    .current-price {
        font-size: 24px;
    }

    .quantity-selector {
        width: 100%;
    }

    .quantity-btn {
        width: 44px;
        height: 44px;
    }

    .quantity-input {
        flex: 1;
        height: 44px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-features-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .feature-compact-item {
        width: 100%;
    }

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

    .shipping-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Zoom Modal */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 40px;
}

.image-zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.zoom-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

[dir="rtl"] .zoom-close {
    right: auto;
    left: 0;
}

.zoom-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.zoom-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.share-modal.active {
    opacity: 1;
    visibility: visible;
}

.share-modal-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.share-modal.active .share-modal-content {
    transform: scale(1);
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.share-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

.share-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: var(--ast-global-color-2);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-close:hover {
    background: rgba(220, 165, 74, 0.1);
    color: var(--gold-light);
}

.share-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--ast-global-color-2);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
}

.share-option:hover {
    background: var(--gold-light);
    color: #ffffff;
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 165, 74, 0.3);
}

.share-option i {
    font-size: 20px;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 24px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 400px;
    border-left: 4px solid #10b981;
}

[dir="rtl"] .notification {
    right: auto;
    left: 24px;
    transform: translateX(-400px);
}

.notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.notification.success {
    border-left-color: #10b981;
}

.notification.error {
    border-left-color: #ef4444;
}

.notification.info {
    border-left-color: var(--gold-light);
}

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

.notification-content i {
    font-size: 20px;
    color: #10b981;
}

.notification.error .notification-content i {
    color: #ef4444;
}

.notification.info .notification-content i {
    color: var(--gold-light);
}

.notification-content span {
    font-size: 14px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
}

/* Related Products Section */
.related-products-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

@media (max-width: 767px) {
    .related-products-section {
        padding: 40px 16px;
    }

    .related-products-section .section-header {
        margin-bottom: 30px;
    }
}

.related-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.related-products-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-products-section .section-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3em;
    color: var(--ast-global-color-2);
    margin: 0;
    position: relative;
    direction: rtl;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.related-products-section .title-highlight {
    display: inline;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-products-section .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.related-products-section .label-text {
    font-size: 10px;
    letter-spacing: 2px;
}

/* Responsive Modals */
@media (max-width: 767px) {
    .image-zoom-modal {
        padding: 20px;
    }

    .zoom-close {
        top: -40px;
    }

    .share-modal-content {
        padding: 24px;
    }

    .share-options {
        grid-template-columns: 1fr;
    }

    .notification {
        right: 16px;
        left: 16px;
        max-width: calc(100% - 32px);
        transform: translateY(-100px);
    }

    [dir="rtl"] .notification {
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   Cart Page Styles
   ============================================ */
.cart-page-section {
    padding: 60px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.cart-items-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.cart-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.cart-count-badge {
    color: var(--gold-light);
    font-size: 0.8em;
}

.clear-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.clear-cart-btn:hover {
    background: #ef4444;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

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

.cart-item-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    padding: 24px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cart-item-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

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

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ast-global-color-3);
    font-size: 32px;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.cart-item-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-name a:hover {
    color: var(--gold-light);
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-price .current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Cairo', sans-serif;
}

.cart-item-price .old-price {
    font-size: 16px;
    color: var(--ast-global-color-3);
    text-decoration: line-through;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    min-width: 200px;
}

.cart-quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #ffffff;
    color: var(--ast-global-color-2);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
}

.qty-btn:hover {
    background: rgba(220, 165, 74, 0.1);
    color: var(--gold-light);
}

.qty-input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    background: #ffffff;
    font-family: 'Cairo', sans-serif;
}

[dir="rtl"] .qty-input {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.cart-item-total .total-label {
    font-size: 12px;
    color: var(--ast-global-color-3);
    font-weight: 500;
}

.cart-item-total .total-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Cairo', sans-serif;
}

.remove-item-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
}

.cart-continue-shopping {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-summary-section {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0 0 24px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    font-family: 'Cairo', sans-serif;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 16px;
    color: var(--ast-global-color-3);
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
}

.summary-value.discount {
    color: #ef4444;
}

.summary-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 8px 0;
}

.summary-row.total-row {
    padding-top: 16px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.summary-row.total-row .summary-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--ast-global-color-2);
}

.summary-row.total-row .summary-value.total {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-form {
    margin: 0;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 24px;
    justify-content: center;
    min-height: 56px;
    font-size: 18px;
}

.payment-methods {
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.payment-methods-title {
    font-size: 14px;
    color: var(--ast-global-color-3);
    margin: 0 0 16px 0;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.payment-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.payment-icons i {
    font-size: 32px;
    color: var(--ast-global-color-3);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--gold-light);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ast-global-color-3);
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
}

.security-badge i {
    color: #10b981;
    font-size: 18px;
}

/* Empty Cart */
.empty-cart-section {
    padding: 100px 24px;
    text-align: center;
}

.empty-cart-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    color: var(--ast-global-color-3);
    opacity: 0.3;
}

.empty-cart-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0 0 16px 0;
    font-family: 'Cairo', sans-serif;
}

.empty-cart-content p {
    font-size: 18px;
    color: var(--ast-global-color-3);
    margin: 0 0 32px 0;
    font-family: 'Cairo', sans-serif;
}

/* Responsive Cart Page */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cart-summary-section {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .cart-page-section {
        padding: 40px 16px;
    }

    .cart-items-section {
        padding: 24px 16px;
    }

    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cart-header h2 {
        font-size: 24px;
    }

    .cart-item-card {
        grid-template-columns: 100px 1fr;
        gap: 16px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-width: auto;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .cart-summary-card {
        padding: 24px 16px;
    }

    .summary-title {
        font-size: 20px;
    }
}

@media (max-width: 544px) {
    .cart-page-section {
        padding: 30px 12px;
    }

    .cart-items-section {
        padding: 20px 12px;
    }

    .cart-item-card {
        grid-template-columns: 80px 1fr;
        padding: 16px;
        gap: 12px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-name {
        font-size: 16px;
    }

    .cart-item-price .current-price {
        font-size: 18px;
    }

    .cart-quantity-control {
        flex-shrink: 0;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .qty-input {
        width: 50px;
        height: 36px;
        font-size: 14px;
    }

    .cart-summary-card {
        padding: 20px 12px;
    }
}

/* ============================================
   Auth Pages (Login & Register) Styles
   ============================================ */
.auth-page-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 2px solid rgba(220, 165, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 32px;
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0 0 12px 0;
    font-family: 'Cairo', sans-serif;
}

.auth-subtitle {
    font-size: 16px;
    color: var(--ast-global-color-3);
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.auth-form {
    margin-top: 32px;
}

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

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    margin-bottom: 8px;
    font-family: 'Cairo', sans-serif;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ast-global-color-3);
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .input-icon {
    right: auto;
    left: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: var(--ast-global-color-2);
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

[dir="rtl"] .form-input {
    padding: 16px 50px 16px 50px;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 4px rgba(220, 165, 74, 0.1);
}

.form-input::placeholder {
    color: var(--ast-global-color-3);
    opacity: 0.6;
}

.password-toggle {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ast-global-color-3);
    padding: 0;
    font-size: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    transition: color 0.3s ease;
    line-height: 1;
    margin: 0;
}

[dir="rtl"] .password-toggle {
    left: auto;
    right: 16px;
}

.password-toggle:hover {
    color: var(--gold-light);
}

.form-error {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-size: 13px;
    margin-top: 8px;
    font-family: 'Cairo', sans-serif;
}

.form-error i {
    font-size: 14px;
}

.form-options {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    width: 100%;
    max-width: 100%;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-checkbox:checked {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    border-color: var(--gold-light);
}

.form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.checkbox-text {
    font-size: 14px;
    color: var(--ast-global-color-2);
    font-weight: 500;
    flex: 1;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.terms-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    min-height: 56px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px;
    justify-content: center;
}

.auth-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auth-footer-text {
    font-size: 15px;
    color: var(--ast-global-color-3);
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

/* Verification Email Page Styles */
.auth-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-family: 'Cairo', sans-serif;
}

.auth-message i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-message div {
    flex: 1;
}

.auth-message strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-message p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.auth-message-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-right: 3px solid #22c55e;
    color: #15803d;
}

.auth-message-success i {
    color: #22c55e;
}

.auth-message-warning {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-right: 3px solid #eab308;
    color: #a16207;
}

.auth-message-warning i {
    color: #eab308;
}

.auth-message-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-right: 3px solid #3b82f6;
    color: #1e40af;
}

.auth-message-info i {
    color: #3b82f6;
}

.verification-info-box {
    background: rgba(220, 165, 74, 0.05);
    border: 1px solid rgba(220, 165, 74, 0.15);
    border-right: 3px solid var(--gold-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
}

.verification-info-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.verification-info-content i {
    font-size: 24px;
    color: var(--gold-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.verification-info-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0 0 8px 0;
    font-family: 'Cairo', sans-serif;
}

.verification-info-content p {
    font-size: 14px;
    color: var(--ast-global-color-3);
    margin: 0;
    line-height: 1.6;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
    font-family: 'Cairo', sans-serif;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.auth-divider span {
    background: #ffffff;
    padding: 0 16px;
    color: var(--ast-global-color-3);
    position: relative;
    font-size: 14px;
}

/* Social Login Section */
.social-login-section {
    margin: 24px 0;
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: var(--ast-global-color-2);
    cursor: pointer;
    box-sizing: border-box;
}

.social-login-btn i {
    font-size: 20px;
    flex-shrink: 0;
}

.social-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-login-btn {
    border-color: rgba(234, 67, 53, 0.3);
    color: #ea4335;
    background: rgba(234, 67, 53, 0.05);
}

.google-login-btn:hover {
    background: #ea4335;
    color: #ffffff;
    border-color: #ea4335;
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.google-login-btn i {
    color: #ea4335;
}

.google-login-btn:hover i {
    color: #ffffff;
}

.button-outline-danger {
    background: transparent;
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    transition: all 0.3s ease;
}

.button-outline-danger:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.auth-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-right: 4px;
}

.auth-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Responsive Auth Pages */
@media (max-width: 767px) {
    .auth-page-section {
        padding: 80px 16px 40px;
    }

    .auth-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .auth-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .auth-title {
        font-size: 28px;
    }

    .auth-subtitle {
        font-size: 15px;
    }

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

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

    .form-input {
        padding: 14px 45px 14px 45px;
        font-size: 14px;
        box-sizing: border-box;
    }

    [dir="rtl"] .form-input {
        padding: 14px 45px 14px 45px;
    }

    .input-icon {
        right: 14px;
        font-size: 15px;
    }

    [dir="rtl"] .input-icon {
        left: 14px;
    }

    .password-toggle {
        left: 14px;
        font-size: 15px;
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
    }

    [dir="rtl"] .password-toggle {
        right: 14px;
    }

    .auth-submit-btn {
        min-height: 52px;
        font-size: 16px;
    }
}

@media (max-width: 544px) {
    .auth-page-section {
        padding: 60px 12px 30px;
    }

    .auth-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .auth-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .auth-title {
        font-size: 24px;
    }

    .auth-subtitle {
        font-size: 14px;
    }

    .form-input {
        padding: 12px 40px 12px 40px;
        box-sizing: border-box;
    }

    [dir="rtl"] .form-input {
        padding: 12px 40px 12px 40px;
    }

    .input-icon {
        right: 12px;
        font-size: 14px;
    }

    [dir="rtl"] .input-icon {
        left: 12px;
    }

    .password-toggle {
        left: 12px;
        font-size: 14px;
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }

    [dir="rtl"] .password-toggle {
        right: 12px;
    }

    .auth-submit-btn {
        min-height: 48px;
        font-size: 15px;
    }
}

/* ============================================
   Checkout Page Styles
   ============================================ */
.checkout-page-section {
    padding: 60px 24px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.checkout-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.form-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 1px solid rgba(220, 165, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 20px;
    flex-shrink: 0;
}

.form-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-method-card {
    display: block;
    cursor: pointer;
    position: relative;
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fafafa;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.payment-method-card:hover .payment-method-content {
    background: #ffffff;
    border-color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(220, 165, 74, 0.15);
}

.payment-method-card.selected .payment-method-content {
    background: rgba(220, 165, 74, 0.05);
    border-color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(220, 165, 74, 0.2);
}

.payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 1px solid rgba(220, 165, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 20px;
    flex-shrink: 0;
}

.payment-method-card.selected .payment-icon {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    border-color: var(--gold-light);
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
}

.payment-desc {
    font-size: 13px;
    color: var(--ast-global-color-3);
    font-family: 'Cairo', sans-serif;
}

.payment-radio {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-method-card.selected .payment-radio {
    border-color: var(--gold-light);
    background: var(--gold-light);
}

.radio-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method-card.selected .radio-indicator {
    opacity: 1;
}

/* Order Summary */
.order-summary-wrapper {
    position: sticky;
    top: 100px;
}

.order-summary-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.order-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0 0 24px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    font-family: 'Cairo', sans-serif;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.order-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

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

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    margin: 0 0 8px 0;
    line-height: 1.4;
    font-family: 'Cairo', sans-serif;
}

.order-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ast-global-color-3);
    font-family: 'Cairo', sans-serif;
}

.order-item-price {
    font-weight: 600;
    color: var(--gold-light);
}

.order-item-total {
    font-size: 16px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
    align-self: flex-start;
}

.summary-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 16px;
    color: var(--ast-global-color-3);
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-family: 'Cairo', sans-serif;
}

.summary-value.shipping-free {
    color: #10b981;
}

.summary-row.total-row {
    padding-top: 16px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.summary-row.total-row .summary-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--ast-global-color-2);
}

.summary-row.total-row .summary-value.total {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-submit-btn {
    width: 100%;
    min-height: 56px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    justify-content: center;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.security-badge i {
    font-size: 18px;
}

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .order-summary-wrapper {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .checkout-page-section {
        padding: 40px 16px;
    }

    .form-section-card {
        padding: 24px 20px;
    }

    .form-section-header {
        margin-bottom: 20px;
    }

    .form-section-title {
        font-size: 20px;
    }

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

    .payment-method-content {
        padding: 16px;
    }

    .order-summary-card {
        padding: 24px 20px;
    }

    .summary-title {
        font-size: 20px;
    }

    .order-item {
        padding: 12px;
    }

    .order-item-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 544px) {
    .checkout-page-section {
        padding: 30px 12px;
    }

    .form-section-card {
        padding: 20px 16px;
    }

    .order-summary-card {
        padding: 20px 16px;
    }

    .order-item-image {
        width: 50px;
        height: 50px;
    }

    .order-item-name {
        font-size: 14px;
    }

    .checkout-submit-btn {
        min-height: 52px;
        font-size: 16px;
    }
}
