/* ============================
   Variables & Reset
============================ */
:root {
    --primary-color: #50215B;
    --secondary-color: #6b2e7a;
    --accent-color: #d4a5dc;
    --dark-color: #2d1333;
    --light-color: #f9f5fa;
    --white: #ffffff;
    --gold: #d4af37;
    --light-purple: #f3e8f5;
    --soft-lavender: #e8d5ed;
    --mauve: #9b6ba3;
    --text-dark: #2d1333;
    --text-light: #5a4360;
    --border-color: #e8d5ed;
    --shadow: 0 5px 20px rgba(80,33,91,0.15);
    --shadow-hover: 0 10px 30px rgba(80,33,91,0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Amiri', serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ============================
   Header Styles
============================ */
.header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    transition: all 0.3s ease;
    max-height: 100px;
}

.top-bar.hidden {
    max-height: 0;
    padding: 0;
    overflow: hidden;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-left: 25px;
}

.top-info i {
    margin-left: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    transform: scale(1.8);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.4s ease;
    animation: fadeIn 1s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(80,33,91,0.3));
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--primary-color);
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    transform: scale(1.15);
    color: var(--primary-color);
    animation: swing 0.6s ease;
}

@keyframes swing {
    20% { transform: rotate(15deg) scale(1.15); }
    40% { transform: rotate(-10deg) scale(1.15); }
    60% { transform: rotate(5deg) scale(1.15); }
    80% { transform: rotate(-5deg) scale(1.15); }
    100% { transform: rotate(0deg) scale(1.15); }
}

.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--secondary-color);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ============================
   Hero Section
============================ */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--white) 50%, var(--soft-lavender) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(80,33,91,0.05) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: right;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.hero-title {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(80,33,91,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(80,33,91,0.5);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================
   Features Section
============================ */
.features {
    padding: 80px 0;
    background: var(--light-purple);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(80,33,91,0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
    transition: transform 0.5s ease;
    animation: float 3s ease-in-out infinite;
}

.feature-card:hover img {
    transform: rotateY(360deg);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80,33,91,0.05), rgba(212,165,220,0.1));
    border-radius: 50%;
    padding: 20px;
    transition: all 0.5s ease;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.1;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(80,33,91,0.2);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ============================
   Section Headers
============================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 0.8s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    animation: expandWidth 1s ease 0.3s forwards;
    width: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

/* ============================
   Products Section
============================ */
.products {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.products::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,165,220,0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float-circle 15s ease-in-out infinite;
}

.products::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80,33,91,0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float-circle 20s ease-in-out infinite reverse;
}

@keyframes float-circle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.1); }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(80,33,91,0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    animation: slideInRight 0.8s ease, wiggle 3s ease-in-out 2s infinite;
}

.product-badge.new {
    background: var(--gold);
    animation: slideInRight 0.8s ease, shimmer 2s ease-in-out infinite;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes shimmer {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(212,175,55,0.5); }
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--light-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 5px 15px rgba(80,33,91,0.1));
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
    filter: drop-shadow(0 10px 30px rgba(80,33,91,0.2));
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(80, 33, 91, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-quick-view::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-quick-view:hover::after {
    left: 100%;
}

.btn-quick-view:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(45,19,51,0.3);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
    min-height: 50px;
    transition: color 0.3s ease;
}

.product-name:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-rating {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 14px;
}

.product-rating span {
    color: var(--text-light);
    margin-right: 5px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-cart {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-add-cart:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add-cart:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(80,33,91,0.4);
}

.btn-add-cart:active {
    transform: translateY(-1px) scale(1.02);
}

/* ============================
   Tips Section
============================ */
.tips {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-purple), var(--light-color));
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tip-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tip-card:hover::after {
    transform: scaleX(1);
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.tip-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    transition: all 0.5s ease;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.tip-card:hover .tip-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(80,33,91,0.4);
}

.tip-icon i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(80,33,91,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(80,33,91,0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.tip-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================
   Gallery Section
============================ */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '🌺';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    animation: gentle-pulse 10s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(-15deg) scale(1.1); }
}

/* Gallery Slider Wrapper */
.gallery-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 50px rgba(80, 33, 91, 0.2);
}

/* Gallery Slider Container */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

/* Gallery Slides */
.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(0.95);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Navigation Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(80, 33, 91, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.gallery-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    right: 20px;
}

.gallery-next {
    left: 20px;
}

/* Dots Indicator */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ============================
   About Section
============================ */
.about {
    padding: 100px 0;
    background: var(--soft-lavender);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-features i {
    color: var(--primary-color);
    margin-left: 10px;
    font-size: 20px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================
   Contact Section
============================ */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155,107,163,0.1) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse-slow 8s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.5; }
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(80,33,91,0.1), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.info-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.4s ease;
    display: inline-block;
}

.info-card:hover i {
    transform: rotateY(360deg) scale(1.2);
    color: var(--secondary-color);
}

.info-card h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ============================
   Footer
============================ */
.footer {
    background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-right: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Tajawal', sans-serif;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 50px 50px 0;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ============================
   Product Modal
============================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    max-height: 400px;
    object-fit: contain;
}

.modal-info h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-rating {
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.modal-description,
.modal-usage {
    margin-bottom: 25px;
}

.modal-description h4,
.modal-usage h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.modal-description p,
.modal-usage p {
    color: var(--text-light);
    line-height: 1.7;
}

.modal-quantity {
    margin-bottom: 30px;
}

.modal-quantity label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-selector input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* ============================
   Cart Sidebar
============================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    z-index: 3000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 24px;
    color: var(--dark-color);
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-qty {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 5px;
    cursor: pointer;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 18px;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
}

.cart-overlay.active {
    display: block;
}

/* ============================
   WhatsApp Float Button
============================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: all 0.3s ease;
    animation: floatWhatsapp 3s ease-in-out infinite, pulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: ripple 2s ease-out infinite;
    opacity: 0.6;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: shake 2s ease-in-out infinite;
}

@keyframes floatWhatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

/* ============================
   Animations
============================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   Responsive Design
============================ */
@media (max-width: 968px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        padding-top: 100px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        gap: 20px;
        z-index: 1999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-content {
        right: 5%;
        left: 5%;
        padding: 30px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .about-content,
    .contact-content,
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .products-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slider-wrapper {
        height: 350px;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-prev {
        right: 10px;
    }
    
    .gallery-next {
        left: 10px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 0px;
        text-align: center;
    }
    
    .top-info span {
        display: block;
        margin: 5px 0;
    }
    
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    /* Content Pages Responsive */
    .page-content {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .content-box h2 {
        font-size: 1.5rem;
    }
    
    .content-box h3 {
        font-size: 1.3rem;
    }
    
    .content-box p,
    .content-box ul li {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Falling Flowers & Icons Background
============================ */
.falling-elements-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.falling-element {
    position: absolute;
    top: -50px;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    filter: drop-shadow(0 2px 4px rgba(80, 33, 91, 0.2));
}

/* Different flower and icon types with natural wind movement */
.falling-flower {
    animation: fall-with-wind 12s ease-in-out infinite;
    color: var(--primary-color);
}

.falling-leaf {
    animation: fall-with-wind-leaf 14s ease-in-out infinite;
    color: var(--secondary-color);
}

.falling-snowflake {
    animation: fall-like-snow 18s ease-out infinite;
    color: var(--accent-color);
    font-size: 20px;
}

/* Main falling animation with natural wind effect - flowers */
@keyframes fall-with-wind {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.4;
    }
    12% {
        transform: translateY(12vh) translateX(25px) rotate(var(--rotation-start, 45deg));
        opacity: 0.4;
    }
    24% {
        transform: translateY(24vh) translateX(-15px) rotate(var(--rotation-mid, 90deg));
        opacity: 0.4;
    }
    36% {
        transform: translateY(36vh) translateX(30px) rotate(var(--rotation-mid2, 135deg));
        opacity: 0.38;
    }
    48% {
        transform: translateY(48vh) translateX(-20px) rotate(var(--rotation-end, 180deg));
        opacity: 0.36;
    }
    60% {
        transform: translateY(60vh) translateX(18px) rotate(var(--rotation-end2, 225deg));
        opacity: 0.32;
    }
    72% {
        transform: translateY(72vh) translateX(-12px) rotate(var(--rotation-final, 270deg));
        opacity: 0.28;
    }
    84% {
        transform: translateY(84vh) translateX(8px) rotate(var(--rotation-complete, 315deg));
        opacity: 0.2;
    }
    92% {
        transform: translateY(92vh) translateX(-5px) rotate(340deg);
        opacity: 0.1;
    }
    100% {
        transform: translateY(105vh) translateX(0) rotate(360deg);
        opacity: 0;
    }
}

/* Leaf falling animation - slightly different pattern */
@keyframes fall-with-wind-leaf {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    4% {
        opacity: 0.4;
    }
    15% {
        transform: translateY(15vh) translateX(-20px) rotate(var(--rotation-start, 30deg));
        opacity: 0.4;
    }
    28% {
        transform: translateY(28vh) translateX(28px) rotate(var(--rotation-mid, 85deg));
        opacity: 0.4;
    }
    40% {
        transform: translateY(40vh) translateX(-22px) rotate(var(--rotation-mid2, 140deg));
        opacity: 0.37;
    }
    52% {
        transform: translateY(52vh) translateX(25px) rotate(var(--rotation-end, 190deg));
        opacity: 0.34;
    }
    64% {
        transform: translateY(64vh) translateX(-18px) rotate(var(--rotation-end2, 235deg));
        opacity: 0.3;
    }
    76% {
        transform: translateY(76vh) translateX(15px) rotate(var(--rotation-final, 280deg));
        opacity: 0.25;
    }
    86% {
        transform: translateY(86vh) translateX(-10px) rotate(var(--rotation-complete, 320deg));
        opacity: 0.18;
    }
    94% {
        transform: translateY(94vh) translateX(5px) rotate(345deg);
        opacity: 0.08;
    }
    100% {
        transform: translateY(105vh) translateX(0) rotate(360deg);
        opacity: 0;
    }
}

/* Snowflake falling animation - gentle like real snow */
@keyframes fall-like-snow {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    3% {
        opacity: 0.5;
    }
    10% {
        transform: translateY(10vh) translateX(15px) rotate(30deg) scale(1.1);
        opacity: 0.5;
    }
    20% {
        transform: translateY(20vh) translateX(-10px) rotate(60deg) scale(0.9);
        opacity: 0.48;
    }
    30% {
        transform: translateY(30vh) translateX(20px) rotate(90deg) scale(1.05);
        opacity: 0.45;
    }
    40% {
        transform: translateY(40vh) translateX(-15px) rotate(120deg) scale(0.95);
        opacity: 0.42;
    }
    50% {
        transform: translateY(50vh) translateX(12px) rotate(150deg) scale(1);
        opacity: 0.4;
    }
    60% {
        transform: translateY(60vh) translateX(-8px) rotate(180deg) scale(0.9);
        opacity: 0.35;
    }
    70% {
        transform: translateY(70vh) translateX(10px) rotate(210deg) scale(0.95);
        opacity: 0.3;
    }
    80% {
        transform: translateY(80vh) translateX(-5px) rotate(240deg) scale(0.85);
        opacity: 0.22;
    }
    90% {
        transform: translateY(90vh) translateX(3px) rotate(270deg) scale(0.8);
        opacity: 0.12;
    }
    100% {
        transform: translateY(105vh) translateX(0) rotate(360deg) scale(0.7);
        opacity: 0;
    }
}

/* Gentle swing animation for added realism */
@keyframes swing-gentle {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(15px);
    }
    50% {
        transform: translateX(-15px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Subtle rotation animation */
@keyframes rotate-natural {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Size variations - applied dynamically via JS */
.size-small {
    font-size: 18px;
    opacity: 0.35;
}

.size-medium {
    font-size: 26px;
    opacity: 0.4;
}

.size-large {
    font-size: 34px;
    opacity: 0.4;
}

.size-xlarge {
    font-size: 42px;
    opacity: 0.45;
}

/* Color variations for purple theme */
.color-primary {
    color: var(--primary-color);
}

.color-secondary {
    color: var(--secondary-color);
}

.color-accent {
    color: var(--accent-color);
}

.color-mauve {
    color: var(--mauve);
}

.color-soft-lavender {
    color: var(--soft-lavender);
}

/* Old floating elements - keep for backward compatibility */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.flower, .leaf, .sparkle, .bubble {
    position: absolute;
    opacity: 0.6;
}

/* Decorative Elements for Sections */
.section-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
    z-index: 0;
}

.section-decoration.flower-left {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    color: var(--primary-color);
    animation: gentle-spin 20s infinite linear;
}

.section-decoration.flower-right {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    color: var(--secondary-color);
    animation: gentle-spin 25s infinite linear reverse;
}

@keyframes gentle-spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Particle System */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s infinite ease-in-out;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* ============================
   Content Pages Styles
============================ */
.page-content {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    position: relative;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.content-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.content-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 30px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.content-box h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-box ul {
    margin: 20px 0 20px 30px;
}

.content-box ul li {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    padding-right: 30px;
}

.content-box ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.highlight-box p {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
}

.note-box {
    background: var(--light-purple);
    border-right: 5px solid var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.note-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.note-box p {
    margin: 0;
    color: var(--text-dark);
}

.shipping-method {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.shipping-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.shipping-method h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-method h3 i {
    color: var(--secondary-color);
}

.policy-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.policy-list li {
    background: var(--light-color);
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-right: 4px solid var(--primary-color);
    position: relative;
    padding-right: 50px;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ============================
   Product Page Styles
============================ */
.product-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-image-section {
    position: relative;
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.05);
}

.product-info-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-price {
    margin-bottom: 30px;
}

.product-price .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.product-description,
.product-usage,
.product-features {
    margin-bottom: 30px;
}

.product-description h3,
.product-usage h3,
.product-features h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.product-description p,
.product-usage p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features ul li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.product-actions .quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.product-actions .quantity-selector button {
    background: var(--light-purple);
    border: none;
    padding: 15px 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-actions .quantity-selector button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-actions .quantity-selector input {
    border: none;
    width: 80px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
}

.product-actions .btn-primary {
    flex: 1;
    padding: 15px 30px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.back-to-products {
    margin-top: 30px;
}

.back-to-products .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--light-purple);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-products .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

/* Responsive for Product Page */
@media (max-width: 968px) {
    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .product-info-section h1 {
        font-size: 2rem;
    }
    
    .product-price .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .product-page {
        padding: 100px 0 60px;
    }
    
    .product-details-wrapper {
        padding: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .quantity-selector {
        width: 100%;
        justify-content: space-between;
    }
}

/* ============================
   Checkout Page Styles
============================ */
.checkout-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary-section,
.customer-info-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.order-summary-section h2,
.customer-info-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.checkout-items {
    margin-bottom: 30px;
}

.checkout-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 15px;
}

.checkout-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.checkout-item-info .item-quantity {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.checkout-item-info .item-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.order-totals {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1.1rem;
}

.total-final {
    border-top: 2px solid var(--border-color);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(80, 33, 91, 0.1);
}

.form-group small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.payment-method-section {
    background: var(--light-purple);
    padding: 25px;
    border-radius: 15px;
    margin: 10px 0;
}

.payment-method-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option .option-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .option-content {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.payment-option .option-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.payment-note {
    margin-top: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-note i {
    color: var(--secondary-color);
}

.terms-section {
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    padding: 18px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}

.back-to-cart {
    text-align: center;
}

.back-to-cart .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--light-purple);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-cart .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.empty-cart-message {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.empty-cart-message a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Checkout Responsive */
@media (max-width: 968px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
    
    .order-summary-section,
    .customer-info-section {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .checkout-page {
        padding: 100px 0 60px;
    }
    
    .order-summary-section,
    .customer-info-section {
        padding: 20px;
    }
    
    .checkout-item {
        flex-direction: column;
        text-align: center;
    }
    
    .checkout-item img {
        width: 100%;
        height: auto;
        max-width: 200px;
        margin: 0 auto;
    }
}