/* ============================================
   Mobile Handbag E-commerce - Main Stylesheet
   ============================================ */

/* Import Cairo Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    max-width: 100vw;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Cairo', sans-serif;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

/* ============================================
   Color Scheme Variables - Pink, Black, White
   ============================================ */
:root {
    --color-bg: #FFFFFF;
    --color-text: #000000;
    --color-text-light: #333333;
    --color-text-gray: #666666;
    --color-accent-gray: #CCCCCC;
    --color-button: #000000;
    --color-button-hover: #333333;
    --color-primary: #FF69B4;
    --color-primary-light: #FFB6C1;
    --color-primary-dark: #FF1493;
    --color-selected: #FF69B4;
    --color-favorite: #FF69B4;
    --color-border: #E5E5E5;
    --color-border-light: #F5F5F5;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-shadow-pink: rgba(255, 105, 180, 0.2);
}

/* ============================================
   RTL Support
   ============================================ */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .header__icons,
[dir="rtl"] .category-nav__list {
    flex-direction: row-reverse;
}

/* ============================================
   Header Styles
   ============================================ */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 56px;
}

/* Header layout for product page - reversed icons and back button */
.header--product {
    flex-direction: row-reverse;
}

.header--product .header__icons {
    order: 1;
}

.header--product .header__title {
    order: 2;
    flex: 1;
    text-align: center;
}

.header--product .header__back {
    order: 3;
}

/* Header on Hero Banner (Homepage) - Transparent */
.header--hero {
    position: absolute;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    z-index: 1000;
}


.header--simple {
    justify-content: center;
    padding: 16px;
}

.header__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    position: relative;
}

.header__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

/* Header title on Hero Banner - White */
.header--hero .header__title {
    color: #FFFFFF;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}


.header__logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.header__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header__logo-link:hover {
    opacity: 0.9;
}

.header__logo-img {
    max-height: 40px;
    height: auto;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

/* Responsive logo sizing */
@media (max-width: 360px) {
    .header__logo-img {
        max-height: 35px;
        max-width: 120px;
    }
}

/* Header logo on Hero Banner - ensure visibility */
.header--hero .header__logo-img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header__icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header__icon {
    font-size: 20px;
    color: var(--color-text);
    cursor: pointer;
    transition: opacity 0.2s;
}

/* Header icons on Hero Banner - White */
.header--hero .header__icon {
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header__icon:hover {
    opacity: 0.7;
}

.header__back {
    font-size: 20px;
    color: var(--color-text);
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
}

.header__back:hover {
    opacity: 0.7;
}

/* Header back button on Hero Banner - White */
.header--hero .header__back {
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header__cart-badge {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* ============================================
   Horizontal Category Navigation
   ============================================ */
.category-nav {
    padding: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav__list {
    display: inline-flex;
    gap: 12px;
    padding: 0;
}

.category-nav__item {
    display: inline-block;
}

.category-nav__button {
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid var(--color-border);
    background-color: #FFFFFF;
    color: var(--color-text-light);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    min-height: 40px;
}

.category-nav__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary-light);
}

.category-nav__button:active {
    transform: translateY(0);
}

.category-nav__button.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(255, 105, 180, 0.3);
    transform: translateY(-1px);
}

.category-nav__button.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--color-shadow-pink);
}

/* Category Navigation Icons */
.category-nav__icon {
    font-size: 15px;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    text-align: center;
}

.category-nav__button:not(.active) .category-nav__icon {
    color: var(--color-text-gray);
}

.category-nav__button.active .category-nav__icon {
    color: #FFFFFF;
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.category-nav__button:hover:not(.active) .category-nav__icon {
    color: var(--color-primary);
    transform: scale(1.05);
}

/* Sparkles icon animation for "جديد" */
.category-nav__button.active .fa-sparkles {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1.15) rotate(0deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Percent icon animation for "خصومات" */
.category-nav__button.active .fa-percent {
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1.15) translateY(0);
    }
    50% {
        transform: scale(1.2) translateY(-2px);
    }
}

/* Tags icon animation for "العلامات" */
.category-nav__button.active .fa-tags {
    animation: wiggle 1.2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: scale(1.15) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
    }
    75% {
        transform: scale(1.2) rotate(5deg);
    }
}

/* ============================================
   Hero Banner
   ============================================ */
.hero-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 280px;
    max-height: 420px;
    overflow: hidden;
    margin: 0;
    margin-bottom: 24px;
    background: #000000;
    border-radius: 0 0 20px 20px;
    z-index: 1;
}

.hero-banner__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner__slide {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-banner__slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Ken Burns Animation */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-banner__slide.active .hero-banner__background {
    animation: kenBurns 8s ease-out forwards;
}

.hero-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
}

/* Hero Banner Background Images */
.hero-banner__background--1 {
    background-image: url('../images/banners/1.jpg');
    background-color: #0a4d68;
}

.hero-banner__background--2 {
    background-image: url('../images/banners/2.jpg');
    background-color: #0a4d68;
}

.hero-banner__background--3 {
    background-image: url('../images/banners/3.jpg');
    background-color: #0a4d68;
}

.hero-banner__background--4 {
    background-image: url('../images/banners/4.jpg');
    background-color: #0a4d68;
}

.hero-banner__background--5 {
    background-image: url('../images/banners/5.jpg');
    background-color: #0a4d68;
}

/* Gradient Overlay */
.hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 40%);
    z-index: 1;
    pointer-events: none; /* Allow clicks to pass through to content below */
}

/* A/B Testing: No gradient variant */
.hero-banner--no-gradient .hero-banner__overlay {
    opacity: 0;
}

/* Content Container */
.hero-banner__content {
    position: absolute;
    left: 20px;
    bottom: 50px;
    padding: 0;
    z-index: 2;
    max-width: 75%;
    color: #FFFFFF;
}

/* Text Entrance Animations */
.hero-banner__content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-banner__slide.active .hero-banner__content > * {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.hero-banner__slide.active .hero-banner__subtitle { transition-delay: 0.3s; }
.hero-banner__slide.active .hero-banner__title { transition-delay: 0.5s; }
.hero-banner__slide.active .hero-banner__cta { transition-delay: 0.7s; }

[dir="rtl"] .hero-banner__content {
    left: auto;
    right: 20px;
    text-align: right;
}

/* Subtitle */
.hero-banner__subtitle {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    color: #FFFFFF;
    line-height: 1.4;
}

/* Headline */
.hero-banner__title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 4px 0 10px 0;
    line-height: 1.15;
    letter-spacing: -0.3px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* CTA Button - Underline Variant */
.hero-banner__cta {
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 6px;
    transition: transform 0.12s ease, opacity 0.12s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.3px;
}

.hero-banner__cta--underline {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.9);
    padding-bottom: 1px;
}

.hero-banner__cta--pill {
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    font-size: 13px;
}

.hero-banner__cta:hover,
.hero-banner__cta:focus {
    transform: translateY(-2px);
    opacity: 0.9;
    outline: none;
}

.hero-banner__cta:active {
    transform: translateY(-2px);
    opacity: 0.95;
}

.hero-banner__cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Slider Dots - Bottom Right */
.hero-banner__dots {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 5px;
    z-index: 10;
    padding: 0;
}

[dir="rtl"] .hero-banner__dots {
    right: auto;
    left: 16px;
}

.hero-banner__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    min-width: 7px;
    min-height: 7px;
    -webkit-tap-highlight-color: transparent;
}

.hero-banner__dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-banner__dot.active {
    background-color: #FFFFFF;
    opacity: 1;
}

.hero-banner__dot:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.hero-banner__dot[aria-selected="true"] {
    background-color: #FFFFFF;
}

/* ============================================
   Product Grid
   ============================================ */
.products-section {
    padding: 0 16px 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header__title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header__icon {
    font-size: 24px;
    color: var(--color-primary);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.view-all-link {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Products Slider */
.products-slider {
    overflow: hidden;
    position: relative;
}

.products-slider__container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 8px;
    cursor: grab;
}

.products-slider__container:active {
    cursor: grabbing;
}

.products-slider__container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.products-slider__container .product-card {
    flex: 0 0 calc(50% - 6px);
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
}

@media (min-width: 400px) {
    .products-slider__container .product-card {
        flex: 0 0 calc(45% - 6px);
        min-width: calc(45% - 6px);
        max-width: calc(45% - 6px);
    }
}

/* ============================================
   Product Card
   ============================================ */
.product-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--color-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.product-card:active {
    transform: scale(0.98);
}

@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px var(--color-shadow);
    }
}

.product-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: #F5F5F5;
}

.product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__favorite {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.product-card__favorite:active {
    transform: scale(0.9);
}

@media (hover: hover) {
    .product-card__favorite:hover {
        background-color: #FFFFFF;
        transform: scale(1.1);
    }
}

.product-card__favorite.active {
    color: var(--color-primary);
}

.product-card__favorite.active i {
    color: var(--color-primary);
}

.product-card__favorite i {
    font-size: 16px;
}

.product-card__info {
    padding: 12px;
}

.product-card__brand {
    font-size: 12px;
    color: var(--color-text-gray);
    margin-bottom: 4px;
    font-weight: 400;
}

.product-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    line-height: 1.4;
}

.product-card__details {
    font-size: 12px;
    color: var(--color-text-gray);
    margin-bottom: 8px;
}

.product-card__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

/* ============================================
   Shop Page Specific Styles
   ============================================ */
.shop-header {
    padding: 16px;
    background-color: #FFFFFF;
}

.shop-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.items-count {
    font-size: 14px;
    color: var(--color-text-gray);
    font-weight: 400;
}

.shop-actions {
    display: flex;
    gap: 12px;
}

.shop-action-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    background-color: #FFFFFF;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-action-btn:hover {
    background-color: #F5F5F5;
}

.shop-action-btn i {
    font-size: 12px;
}

/* ============================================
   Product Details Page
   ============================================ */
.product-detail {
    padding-bottom: 80px;
}

.product-images {
    position: relative;
    width: 100%;
    background-color: #F5F5F5;
    margin-bottom: 24px;
}

.product-images__container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.product-images__slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-images__slide.active {
    display: block;
}

.product-images__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-images__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.product-images__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.product-images__dot.active {
    background-color: #FFFFFF;
}

.product-info {
    padding: 0 16px;
}

.product-info__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.product-info__brand {
    font-size: 16px;
    color: var(--color-text-gray);
    margin-bottom: 16px;
    font-weight: 400;
}

.product-info__price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.product-info__price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
}

.product-info__favorite-wrapper {
    margin-bottom: 24px;
}

.product-info__favorite {
    width: 100%;
    padding: 12px 16px;
    border-radius: 24px;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
}

.product-info__favorite.active {
    color: #FFFFFF;
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.product-info__favorite:hover {
    background-color: rgba(255, 105, 180, 0.1);
}

.product-info__favorite.active:hover {
    background-color: var(--color-primary-dark);
}

.product-options {
    margin-bottom: 24px;
}

.product-options__label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    display: block;
}

.product-options__colors {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-swatch.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-shadow-pink);
    transform: scale(1.1);
}

.color-swatch--black {
    background-color: #000000;
}

.color-swatch--white {
    background-color: #FFFFFF;
    border: 2px solid var(--color-border);
}

.color-swatch--gray {
    background-color: #CCCCCC;
}

.color-swatch--red {
    background-color: #FF3B30;
}

.color-swatch--beige {
    background-color: #F5E6D3;
}

.color-swatch--tan {
    background-color: #D4AF37;
}

.color-swatch--blue {
    background-color: #007AFF;
}

.color-swatch--gold {
    background-color: #FFD700;
}

.color-swatch--brown {
    background-color: #8B4513;
}

.color-swatch--pink {
    background-color: #FF69B4;
}

.color-swatch--silver {
    background-color: #C0C0C0;
}

.color-swatch--bronze {
    background-color: #CD7F32;
}

.product-options__sizes {
    display: flex;
    gap: 12px;
}

.size-option {
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    background-color: #FFFFFF;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option.active {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px var(--color-shadow-pink);
}

.product-description {
    margin-bottom: 24px;
}

.product-description__text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.product-reviews {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.product-reviews__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.product-reviews__stars {
    color: var(--color-text);
    font-size: 16px;
}

.product-reviews__link {
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.product-reviews__link:hover {
    color: var(--color-primary-dark);
}

.add-to-cart-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background-color: var(--color-button);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    z-index: 100;
}

.add-to-cart-btn:active {
    background-color: var(--color-button-hover);
    transform: scale(0.98);
}

@media (hover: hover) {
    .add-to-cart-btn:hover {
        background-color: var(--color-button-hover);
    }
}

/* ============================================
   Cart Page Styles
   ============================================ */
.cart-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 16px;
}

.cart-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-section {
    padding: 0 16px;
}

.cart-section__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.cart-items {
    margin-bottom: 100px;
}

.cart-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px var(--color-shadow);
    display: flex;
    gap: 12px;
}

.cart-item__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #F5F5F5;
}

.cart-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.cart-item__details {
    font-size: 14px;
    color: var(--color-text-gray);
    margin-bottom: 8px;
}

.cart-item__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 4px 8px;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #F5F5F5;
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    min-width: 24px;
    text-align: center;
}

.cart-item__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.cart-item__remove {
    align-self: flex-start;
    color: var(--color-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cart-item__remove:hover {
    transform: scale(1.1);
    color: var(--color-primary-dark);
}

.cart-item__remove:active {
    transform: scale(0.95);
}

.cart-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 16px;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 8px var(--color-shadow);
    z-index: 100;
}

.cart-summary__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cart-summary__label {
    font-size: 14px;
    color: var(--color-text-gray);
    font-weight: 400;
}

.cart-summary__total {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-button);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn i {
    font-size: 18px;
}

.checkout-btn:active {
    background-color: var(--color-button-hover);
    transform: scale(0.98);
}

@media (hover: hover) {
    .checkout-btn:hover {
        background-color: var(--color-button-hover);
    }
}

/* Pink Glass Effect for Cart Page Checkout Button */
.cart-page .checkout-btn {
    background: rgba(255, 182, 193, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 182, 193, 0.3);
    color: #d81b60;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
}

.cart-page .checkout-btn:hover {
    background: rgba(255, 182, 193, 0.35);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.3);
    transform: translateY(-2px);
}

.cart-page .checkout-btn:active {
    background: rgba(255, 182, 193, 0.4);
    transform: scale(0.98) translateY(0);
}

.cart-page .checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 182, 193, 0.15);
}

.cart-page .checkout-btn i {
    color: #d81b60;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.hidden {
    display: none !important;
}

/* ============================================
   Animations and Transitions
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-card {
    animation: fadeIn 0.3s ease-out;
}

/* ============================================
   Loading States
   ============================================ */
.loading-spinner {
    border: 3px solid var(--color-border-light);
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   Empty States
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-gray);
}

.empty-state__icon {
    font-size: 64px;
    color: var(--color-primary-light);
    margin-bottom: 16px;
}

.empty-state__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.empty-state__message {
    font-size: 14px;
    margin-bottom: 24px;
}

.empty-state__button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-radius: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-state__button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-shadow-pink);
}

/* ============================================
   Success/Error Messages
   ============================================ */
.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message--success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.message--error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid #F44336;
}

/* ============================================
   Search Page Styles
   ============================================ */
.search-section {
    padding: 16px;
    background-color: #FFFFFF;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    border-radius: 24px;
    padding: 12px 16px;
    gap: 12px;
}

.search-box__icon {
    color: var(--color-text-gray);
    font-size: 18px;
}

.search-box__input {
    flex: 1;
    border: none;
    background: none;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    color: var(--color-text);
    outline: none;
}

.search-box__input::placeholder {
    color: var(--color-text-gray);
}

.search-box__clear {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-text-gray);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box__clear:hover {
    background-color: var(--color-primary);
}

.recent-searches {
    padding: 16px;
}

.clear-recent-btn {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
}

.recent-searches__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.recent-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #F5F5F5;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.recent-search-item:hover {
    background-color: var(--color-border-light);
}

.recent-search-item i {
    color: var(--color-text-gray);
    font-size: 14px;
}

.recent-search-item span {
    color: var(--color-text);
    font-size: 14px;
}

.search-results {
    padding: 16px;
}

.results-count {
    font-size: 14px;
    color: var(--color-text-gray);
    font-weight: 400;
}

/* ============================================
   Filter and Sort Modals
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.modal__content {
    background-color: #FFFFFF;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 24px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.modal__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal__close:hover {
    background-color: var(--color-border);
}

.filter-option {
    margin-bottom: 20px;
}

.filter-option__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.filter-option__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-checkbox:hover {
    background-color: #F5F5F5;
}

.filter-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.filter-checkbox label {
    font-size: 14px;
    color: var(--color-text);
    cursor: pointer;
    flex: 1;
}

.sort-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 8px;
}

.sort-option:hover {
    background-color: #F5F5F5;
}

.sort-option.active {
    background-color: rgba(255, 105, 180, 0.1);
    border: 2px solid var(--color-primary);
}

.sort-option__label {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 500;
}

.sort-option__icon {
    color: var(--color-primary);
    font-size: 18px;
}

/* ============================================
   Checkout Page Styles
   ============================================ */
.checkout-form {
    padding: 16px;
    padding-bottom: 100px;
}

.checkout-section {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px var(--color-shadow);
}

.checkout-section__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-section__title i {
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    color: var(--color-text);
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-shadow-pink);
}

.form-input.error {
    border-color: #F44336;
}

.order-summary {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item__image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.order-item__info {
    flex: 1;
}

.order-item__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.order-item__details {
    font-size: 12px;
    color: var(--color-text-gray);
    margin-bottom: 4px;
}

.order-item__quantity {
    font-size: 12px;
    color: var(--color-text-gray);
}

.order-item__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

.order-summary__total {
    padding-top: 16px;
    border-top: 2px solid var(--color-border);
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-text);
}

.order-summary__row--total {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.checkout-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 16px;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 8px var(--color-shadow);
    z-index: 100;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-button);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.checkout-btn:active {
    background-color: var(--color-button-hover);
    transform: scale(0.98);
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (hover: hover) {
    .checkout-btn:hover:not(:disabled) {
        background-color: var(--color-button-hover);
    }
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:active {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
    transform: scale(0.98);
}

.whatsapp-btn i {
    font-size: 20px;
    flex-shrink: 0;
}

.whatsapp-btn span {
    white-space: normal;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 360px) {
    .whatsapp-btn {
        font-size: 14px;
        padding: 14px 12px;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
    }
}

@media (hover: hover) {
    .whatsapp-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    }
}

/* Checkout Info Section */
.checkout-info-section {
    padding: 16px;
    margin-bottom: 16px;
}

.checkout-info {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 192, 203, 0.05) 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.checkout-info__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-info__title i {
    color: #25D366;
    font-size: 20px;
}

.checkout-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-info__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}

.checkout-info__item:last-child {
    margin-bottom: 0;
}

.checkout-info__item i {
    color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 16px;
}

.checkout-info__item span {
    flex: 1;
}

/* Form Select Dropdown */
.form-select {
    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 16px center;
    padding-left: 40px;
    cursor: pointer;
}

[dir="rtl"] .form-select {
    background-position: right 16px center;
    padding-right: 40px;
    padding-left: 16px;
}

/* ============================================
   Order Confirmation Page Styles
   ============================================ */
.confirmation-section {
    padding: 24px 16px;
    background-color: #FFFFFF;
    margin-bottom: 16px;
}

.confirmation-icon {
    text-align: center;
    margin-bottom: 20px;
}

.confirmation-icon i {
    font-size: 80px;
    color: #4CAF50;
}

.confirmation-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 12px;
}

.confirmation-message {
    font-size: 16px;
    color: var(--color-text-gray);
    text-align: center;
    margin-bottom: 24px;
}

.confirmation-section__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.order-detail-item:last-child {
    border-bottom: none;
}

.order-detail-item--total {
    border-top: 2px solid var(--color-border);
    padding-top: 16px;
    margin-top: 8px;
}

.order-detail-label {
    font-size: 14px;
    color: var(--color-text-gray);
    font-weight: 500;
}

.order-detail-value {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 600;
    text-align: right;
    flex: 1;
    margin-left: 16px;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background-color: #F5F5F5;
    border-radius: 12px;
}

.order-item-card__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.order-item-card__info {
    flex: 1;
}

.order-item-card__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.order-item-card__details {
    font-size: 12px;
    color: var(--color-text-gray);
    margin-bottom: 4px;
}

.order-item-card__quantity {
    font-size: 12px;
    color: var(--color-text-gray);
    margin-bottom: 8px;
}

.order-item-card__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.confirmation-actions {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
}

.confirmation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.confirmation-btn--primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.confirmation-btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-shadow-pink);
}

.confirmation-btn--secondary {
    background-color: #F5F5F5;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.confirmation-btn--secondary:hover {
    background-color: var(--color-border-light);
}

/* ============================================
   Favorites Page Styles
   ============================================ */
/* Already covered by products-section and product-grid */

/* ============================================
   Orders Page Styles
   ============================================ */
.orders-section {
    padding: 16px;
    padding-bottom: 24px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px var(--color-shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card:active {
    transform: scale(0.98);
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.order-card__info {
    flex: 1;
}

.order-card__number {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.order-card__date {
    font-size: 12px;
    color: var(--color-text-gray);
}

.order-card__status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.order-card__status--processing {
    background-color: rgba(255, 193, 7, 0.2);
    color: #F57C00;
}

.order-card__status--shipped {
    background-color: rgba(33, 150, 243, 0.2);
    color: #1976D2;
}

.order-card__status--delivered {
    background-color: rgba(76, 175, 80, 0.2);
    color: #388E3C;
}

.order-card__items {
    margin-bottom: 12px;
}

.order-card__item {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.order-card__item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.order-card__item-info {
    flex: 1;
}

.order-card__item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.order-card__item-quantity {
    font-size: 12px;
    color: var(--color-text-gray);
}

.order-card__more {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 8px;
}

.order-card__footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.order-card__total {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

/* ============================================
   Profile Page Styles
   ============================================ */
.profile-section {
    padding: 24px 16px;
    background-color: #FFFFFF;
    margin-bottom: 16px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-name:hover {
    color: var(--color-primary);
}

[dir="rtl"] .profile-name:hover {
    transform: translateX(2px);
}

[dir="ltr"] .profile-name:hover {
    transform: translateX(-2px);
}

.profile-name:active {
    opacity: 0.8;
    transform: translateX(0);
}

.profile-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-whatsapp:hover {
    color: #128C7E;
    transform: translateX(-2px);
}

.profile-whatsapp:active {
    opacity: 0.8;
}

.profile-whatsapp i {
    font-size: 18px;
}

.profile-email {
    font-size: 14px;
    color: var(--color-text-gray);
}

.profile-menu {
    background-color: #FFFFFF;
    padding: 16px 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    transition: background-color 0.3s ease;
}

.profile-menu-item:last-child {
    border-bottom: none;
}

.profile-menu-item:active {
    background-color: #F5F5F5;
}

.profile-menu-item i:first-child {
    font-size: 20px;
    color: var(--color-primary);
    width: 24px;
}

.profile-menu-item span {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.profile-menu-item i:last-child {
    font-size: 14px;
    color: var(--color-text-gray);
}

/* ============================================
   Social Media Section Styles
   ============================================ */
.social-media-section {
    padding: 12px 8px;
    background-color: #FFFFFF;
    margin-bottom: 16px;
}

.social-media-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 6px;
    width: 100%;
}

.social-media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    flex: 1;
    min-width: 0;
}

.social-media-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-media-item:active {
    transform: scale(0.95);
}

.social-media-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.social-media-item:active .social-media-icon {
    transform: scale(0.9);
}

.social-media-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

/* Instagram */
.social-media-item.instagram .social-media-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-media-item.instagram {
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.1) 0%, rgba(188, 24, 136, 0.1) 100%);
}

.social-media-item.instagram:active {
    border-color: #bc1888;
}

.social-media-item.instagram:active .social-media-name {
    color: #bc1888;
}

/* TikTok */
.social-media-item.tiktok .social-media-icon {
    background: linear-gradient(45deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
}

.social-media-item.tiktok {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.1) 0%, rgba(254, 44, 85, 0.1) 100%);
}

.social-media-item.tiktok:active {
    border-color: #FE2C55;
}

.social-media-item.tiktok:active .social-media-name {
    color: #FE2C55;
}

/* Facebook */
.social-media-item.facebook .social-media-icon {
    background: linear-gradient(135deg, #1877F2 0%, #0A66C2 100%);
}

.social-media-item.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(10, 102, 194, 0.1) 100%);
}

.social-media-item.facebook:active {
    border-color: #1877F2;
}

.social-media-item.facebook:active .social-media-name {
    color: #1877F2;
}

/* YouTube */
.social-media-item.youtube .social-media-icon {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-media-item.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(204, 0, 0, 0.1) 100%);
}

.social-media-item.youtube:active {
    border-color: #FF0000;
}

.social-media-item.youtube:active .social-media-name {
    color: #FF0000;
}

/* WhatsApp */
.social-media-item.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
}

.social-media-item.whatsapp .social-media-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-media-item.whatsapp:active {
    border-color: #25D366;
}

.social-media-item.whatsapp:active .social-media-name {
    color: #25D366;
}

/* Social Media Section - Responsive */
@media (max-width: 360px) {
    .social-media-section {
        padding: 10px 4px;
    }
    
    .social-media-grid {
        gap: 3px;
    }
    
    .social-media-item {
        padding: 8px 3px;
        border-radius: 8px;
    }
    
    .social-media-icon {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .social-media-name {
        font-size: 9px;
        line-height: 1.1;
    }
}

@media (min-width: 361px) and (max-width: 480px) {
    .social-media-section {
        padding: 12px 6px;
    }
    
    .social-media-grid {
        gap: 4px;
    }
    
    .social-media-item {
        padding: 10px 4px;
    }
    
    .social-media-icon {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
    
    .social-media-name {
        font-size: 10px;
        line-height: 1.2;
    }
}

/* ============================================
   Reviews Page Styles
   ============================================ */
.reviews-product-section {
    padding: 16px;
    background-color: #FFFFFF;
    margin-bottom: 16px;
}

.reviews-product {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviews-product__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.reviews-product__info {
    flex: 1;
}

.reviews-product__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.reviews-product__brand {
    font-size: 14px;
    color: var(--color-text-gray);
}

.reviews-section {
    padding: 16px;
    padding-bottom: 80px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px var(--color-shadow);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-card__author {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.review-card__rating {
    color: #FFD700;
    font-size: 14px;
}

.review-card__date {
    font-size: 12px;
    color: var(--color-text-gray);
    margin-bottom: 8px;
}

.review-card__text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.add-review-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    left: 16px;
    padding: 16px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px var(--color-shadow-pink);
    transition: all 0.3s ease;
    z-index: 100;
}

.add-review-btn:active {
    transform: scale(0.98);
}

.rating-input {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-input i {
    font-size: 24px;
    color: #FFD700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.rating-input i:active {
    transform: scale(1.2);
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    color: var(--color-text);
    background-color: #FFFFFF;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-shadow-pink);
}

/* ============================================
   About Page Styles
   ============================================ */
.about-section {
    padding: 24px 16px;
    background-color: #FFFFFF;
    margin-bottom: 16px;
}

.about-content {
    text-align: center;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.about-text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-section__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.contact-form {
    margin-top: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #F5F5F5;
    border-radius: 8px;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--color-primary);
    width: 24px;
}

.contact-info-item span {
    font-size: 14px;
    color: var(--color-text);
}

/* ============================================
   About Page Enhanced Styles
   ============================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 280px;
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 24px;
}

.about-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.85), rgba(255, 20, 147, 0.75));
}

.about-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px;
    text-align: center;
}

.about-hero__logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.about-hero__title {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero__subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* About Founder Section */
.about-founder {
    padding: 32px 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
    margin-bottom: 24px;
}

.about-founder__container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-founder__image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.about-founder__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #FFFFFF;
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.3);
}

.about-founder__badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.about-founder__badge i {
    font-size: 18px;
    color: #FFFFFF;
}

.about-founder__name {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.about-founder__title {
    font-size: 16px;
    color: var(--color-text-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.about-founder__details {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.about-founder__detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-light);
}

.about-founder__detail i {
    font-size: 16px;
    color: var(--color-primary);
}

/* About Story Section */
.about-story {
    padding: 32px 16px;
    background-color: #FFFFFF;
    margin-bottom: 24px;
}

.about-story__container {
    max-width: 700px;
    margin: 0 auto;
}

.about-story__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.about-story__icon {
    font-size: 24px;
    color: var(--color-primary);
}

.about-story__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.about-story__content {
    text-align: right;
}

.about-story__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.about-story__text strong {
    color: var(--color-text);
    font-weight: 700;
}

/* About Services Section */
.about-services {
    padding: 32px 16px;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 100%);
    margin-bottom: 24px;
}

.about-services__container {
    max-width: 700px;
    margin: 0 auto;
}

.about-services__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.about-services__icon {
    font-size: 24px;
    color: var(--color-primary);
}

.about-services__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-services__item {
    background-color: #FFFFFF;
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-services__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.2);
}

.about-services__item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.about-services__item-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.about-services__item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.about-services__item-text {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* About Values Section */
.about-values {
    padding: 32px 16px;
    background-color: #FFFFFF;
    margin-bottom: 24px;
}

.about-values__container {
    max-width: 700px;
    margin: 0 auto;
}

.about-values__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.about-values__icon {
    font-size: 24px;
    color: var(--color-primary);
}

.about-values__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.about-values__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-values__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #F9F9F9;
    border-radius: 8px;
    border-right: 4px solid var(--color-primary);
}

.about-values__item i {
    font-size: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-values__item span {
    font-size: 16px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* About Gallery Section */
.about-gallery {
    padding: 32px 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
    margin-bottom: 24px;
}

.about-gallery__container {
    max-width: 700px;
    margin: 0 auto;
}

.about-gallery__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.about-gallery__icon {
    font-size: 24px;
    color: var(--color-primary);
}

.about-gallery__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.about-gallery__item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1));
    transition: all 0.3s ease;
}

.about-gallery__item:hover .about-gallery__overlay {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 20, 147, 0.2));
}

/* About Social Section */
.about-social {
    padding: 32px 16px;
    background-color: #FFFFFF;
    margin-bottom: 24px;
}

.about-social__container {
    max-width: 700px;
    margin: 0 auto;
}

.about-social__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.about-social__icon {
    font-size: 24px;
    color: var(--color-primary);
}

.about-social__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.about-social__grid {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.about-social__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: calc(33.333% - 8px);
    border: 2px solid var(--color-border);
    background-color: #F9F9F9;
}

.about-social__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-social__item i {
    font-size: 24px;
    margin-bottom: 8px;
}

.about-social__item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
}

.about-social__item.instagram {
    border-color: #E4405F;
}

.about-social__item.instagram i {
    color: #E4405F;
}

.about-social__item.tiktok {
    border-color: #000000;
}

.about-social__item.tiktok i {
    color: #000000;
}

.about-social__item.facebook {
    border-color: #1877F2;
}

.about-social__item.facebook i {
    color: #1877F2;
}

.about-social__item.youtube {
    border-color: #FF0000;
}

.about-social__item.youtube i {
    color: #FF0000;
}

.about-social__item.whatsapp {
    border-color: #25D366;
}

.about-social__item.whatsapp i {
    color: #25D366;
}

/* About Contact Section */
.about-contact {
    padding: 32px 16px;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 100%);
    margin-bottom: 24px;
}

.about-contact__container {
    max-width: 700px;
    margin: 0 auto;
}

.about-contact__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.about-contact__icon {
    font-size: 24px;
    color: var(--color-primary);
}

.about-contact__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.about-contact__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-contact__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.about-contact__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);
}

.about-contact__item i {
    font-size: 24px;
    color: var(--color-primary);
    width: 30px;
    text-align: center;
}

.about-contact__item.whatsapp i {
    color: #25D366;
}

.about-contact__item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.about-contact__item-label {
    font-size: 12px;
    color: var(--color-text-gray);
    font-weight: 500;
}

.about-contact__item-value {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 600;
}

/* Responsive Styles for About Page */
@media (max-width: 360px) {
    .about-hero__title {
        font-size: 24px;
    }
    
    .about-hero__subtitle {
        font-size: 14px;
    }
    
    .about-hero__logo {
        width: 100px;
    }
    
    .about-services__grid {
        grid-template-columns: 1fr;
    }
    
    .about-gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .about-social__item {
        min-width: calc(50% - 8px);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .about-hero {
        height: 55vh;
        min-height: 320px;
        max-height: 450px;
    }
    
    .about-hero__title {
        font-size: 36px;
    }
    
    .about-hero__subtitle {
        font-size: 18px;
    }
    
    .about-hero__logo {
        width: 140px;
    }
    
    .about-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Hero Banner - Responsive Styles
   ============================================ */

/* Tablet: 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-banner {
        height: 52vh;
        min-height: 320px;
        max-height: 480px;
    }
    
    .hero-banner__content {
        left: 24px;
        bottom: 60px;
        max-width: 75%;
    }
    
    [dir="rtl"] .hero-banner__content {
        left: auto;
        right: 24px;
    }
    
    .hero-banner__subtitle {
        font-size: 12px;
        letter-spacing: 0.9px;
    }
    
    .hero-banner__title {
        font-size: 32px;
        line-height: 1.2;
        font-weight: 700;
    }
    
    .hero-banner__cta {
        font-size: 14px;
    }
    
    .hero-banner__dots {
        right: 20px;
        bottom: 20px;
    }
    
    [dir="rtl"] .hero-banner__dots {
        right: auto;
        left: 20px;
    }
    
    .hero-banner__dot {
        width: 9px;
        height: 9px;
        min-width: 9px;
        min-height: 9px;
    }
}

/* Small Mobile: ≤360px */
@media (max-width: 360px) {
    .hero-banner {
        height: 48vh;
        min-height: 240px;
        max-height: 360px;
    }
    
    .hero-banner__content {
        left: 16px;
        bottom: 45px;
        max-width: 78%;
    }
    
    [dir="rtl"] .hero-banner__content {
        left: auto;
        right: 16px;
    }
    
    .hero-banner__subtitle {
        font-size: 10px;
        letter-spacing: 0.7px;
        margin-bottom: 3px;
    }
    
    .hero-banner__title {
        font-size: 20px;
        line-height: 1.1;
        font-weight: 700;
        margin: 3px 0 8px 0;
    }
    
    .hero-banner__cta {
        font-size: 12px;
        margin-top: 5px;
    }
    
    .hero-banner__dots {
        right: 12px;
        bottom: 14px;
    }
    
    [dir="rtl"] .hero-banner__dots {
        right: auto;
        left: 12px;
    }
    
    .hero-banner__dot {
        width: 7px;
        height: 7px;
        min-width: 7px;
        min-height: 7px;
    }
}

/* Standard Mobile: 361px - 480px */
@media (min-width: 361px) and (max-width: 480px) {
    .hero-banner {
        height: 50vh;
        min-height: 280px;
        max-height: 420px;
    }
    
    .hero-banner__title {
        font-size: 26px;
        font-weight: 700;
    }
    
    .hero-banner__subtitle {
        font-size: 11px;
    }
    
    .hero-banner__cta {
        font-size: 13px;
    }
}

/* ============================================
   Media Queries (Mobile Only - Max 480px)
   ============================================ */
@media (min-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Prevent desktop styles - Mobile only design */
@media (min-width: 768px) {
    body {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

