
css_code = '''/* ===== BIZO SHOP - Vibrant & Stunning Design ===== */
:root {
    --primary: #FF2E63;
    --secondary: #08D9D6;
    --accent: #FFD700;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #FF2E63 0%, #FF6B6B 50%, #FFA07A 100%);
    --gradient-2: linear-gradient(135deg, #08D9D6 0%, #00B4D8 50%, #0077B6 100%);
    --gradient-3: linear-gradient(135deg, #FF9F1C 0%, #FFBF69 50%, #FFD700 100%);
    --gradient-4: linear-gradient(135deg, #9D4EDD 0%, #C77DFF 50%, #E0AAFF 100%);
    --gradient-5: linear-gradient(135deg, #2EC4B6 0%, #06D6A0 50%, #1B9AAA 100%);
    --shadow: 0 15px 40px rgba(255, 46, 99, 0.15);
    --shadow-hover: 0 25px 60px rgba(255, 46, 99, 0.25);
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #F0F4F8 0%, #E8ECF1 100%);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Header ===== */
header {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 46, 99, 0.1);
    transition: all 0.3s;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 40px rgba(255, 46, 99, 0.15);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(255, 46, 99, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text-main {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.logo-text-sub {
    font-size: 0.8rem;
    color: #08D9D6;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -5px;
    font-weight: 700;
}

.logo-img {
    max-height: 55px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
}

nav a:hover, nav a.active {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 46, 99, 0.3);
    transform: translateY(-3px);
}

/* ===== Hero Section ===== */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 46, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(8, 217, 214, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #FF2E63;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #08D9D6;
    bottom: 50px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #FFD700;
    top: 50%;
    left: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 10px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #FF2E63, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s;
    box-shadow: 0 10px 35px rgba(255, 46, 99, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 46, 99, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s;
    border: 2px solid rgba(8, 217, 214, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(8, 217, 214, 0.2);
    border-color: #08D9D6;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(8, 217, 214, 0.3);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    animation: floatImage 4s ease-in-out infinite;
    border: 3px solid rgba(255, 46, 99, 0.3);
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.floating-card.card-1 {
    top: 15%;
    left: -30px;
    animation-delay: 0.5s;
}

.floating-card.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card .icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--white);
    padding: 2.5rem 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 25px;
    box-shadow: var(--shadow);
    margin-left: 30px;
    margin-right: 30px;
    border: 1px solid rgba(255, 46, 99, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

.stat-item h3 {
    font-size: 2.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.stat-item p {
    color: #888;
    font-size: 1rem;
    font-weight: 600;
}

/* ===== Section Styles ===== */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 46, 99, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: #888;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Category Cards ===== */
.categories-section {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 46, 99, 0.15);
}

.category-icon {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.category-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    opacity: 0.15;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(-8deg);
}

.category-icon.electronics { background: linear-gradient(135deg, #FF2E63, #FF6B6B); }
.category-icon.electronics::after { background: #FF2E63; }

.category-icon.fashion { background: linear-gradient(135deg, #9D4EDD, #C77DFF); }
.category-icon.fashion::after { background: #9D4EDD; }

.category-icon.home { background: linear-gradient(135deg, #08D9D6, #00B4D8); }
.category-icon.home::after { background: #08D9D6; }

.category-icon.kitchen { background: linear-gradient(135deg, #2EC4B6, #06D6A0); }
.category-icon.kitchen::after { background: #2EC4B6; }

.category-icon.beauty { background: linear-gradient(135deg, #FF9F1C, #FFBF69); }
.category-icon.beauty::after { background: #FF9F1C; }

.category-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.category-count {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== Product Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 46, 99, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 46, 99, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-card:hover .product-image {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.quick-view {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.quick-view:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 46, 99, 0.4);
}

.product-info {
    padding: 1.8rem;
}

.product-category {
    color: #FF2E63;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.rating-count {
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FF2E63;
}

.original-price {
    font-size: 1.1rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 600;
}

.discount-tag {
    background: linear-gradient(135deg, #FF2E63, #FF6B6B);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(255, 46, 99, 0.3);
}

.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--gradient-1);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    background: var(--gradient-2);
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(8, 217, 214, 0.4);
}

/* ===== Section Backgrounds ===== */
.featured-section {
    background: linear-gradient(180deg, #FFF5F7 0%, #FFF0F3 100%);
}

.electronics-section {
    background: linear-gradient(180deg, #F0F8FF 0%, #E6F3FF 100%);
}

.fashion-section {
    background: linear-gradient(180deg, #FDF4FF 0%, #F5E6FF 100%);
}

.home-section {
    background: linear-gradient(180deg, #F0FFFE 0%, #E6FFFC 100%);
}

.kitchen-section {
    background: linear-gradient(180deg, #F0FFF4 0%, #E6FFEE 100%);
}

.beauty-section {
    background: linear-gradient(180deg, #FFFBF0 0%, #FFF5E6 100%);
}

/* ===== Features ===== */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 46, 99, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.3);
    transition: transform 0.4s;
}

.feature-card:hover .feature-icon {
    transform: rotate(-10deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--dark);
}

.feature-card p {
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== Newsletter ===== */
.newsletter {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 46, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(8, 217, 214, 0.1) 0%, transparent 50%);
}

.newsletter h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
}

.newsletter h2 span {
    background: linear-gradient(135deg, #FF2E63, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    border-color: #FF2E63;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 30px rgba(255, 46, 99, 0.2);
}

.newsletter-form button {
    padding: 1.2rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.4);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 46, 99, 0.5);
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-brand .logo-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    font-size: 2rem;
}

.footer-brand p {
    color: #95a5a6;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(255, 46, 99, 0.4);
    border-color: transparent;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFD700;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #95a5a6;
    text-decoration: none;
    line-height: 2.8;
    transition: all 0.3s;
    display: block;
    font-size: 1rem;
}

.footer-section a:hover {
    color: #FFD700;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #7f8c8d;
    font-size: 0.95rem;
    position: relative;
}

/* ===== Disclaimer ===== */
.disclaimer {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    border-left: 5px solid #FF9F1C;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.9;
    box-shadow: 0 5px 20px rgba(255, 159, 28, 0.1);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Loading ===== */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f0f0f0;
    border-top-color: #FF2E63;
    border-right-color: #08D9D6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Coming Soon ===== */
.coming-soon {
    text-align: center;
    padding: 4rem;
    color: #888;
    font-size: 1.2rem;
    font-weight: 600;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-text h1 { font-size: 3rem; }
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2.5rem; }
    .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero { min-height: 500px; }
    nav ul { display: none; }
    .newsletter-form { flex-direction: column; }
    .newsletter h2 { font-size: 2rem; }
    .stats-bar { margin-left: 15px; margin-right: 15px; }
    .stat-item h3 { font-size: 2rem; }
    .floating-card { display: none; }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}
'''

with open('/mnt/agents/output/styles.css', 'w', encoding='utf-8') as f:
    f.write(css_code)

print("✅ styles.css تم إنشاؤه بنجاح!")
print(f"📄 الحجم: {len(css_code)} حرف")
