@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
    --bg-dark: #080710;
    --bg-surface: #131129;
    --primary-color: #ffc837;
    --secondary-color: #ff8008;
    --gradient-accent: linear-gradient(135deg, #ff8008 0%, #ffc837 100%);
    --gradient-dark-card: linear-gradient(145deg, #181535 0%, #0d0b1f 100%);
    --text-white: #ffffff;
    --text-gray: #b5b3cd;
    --neon-blue: #00f2fe;
    --neon-pink: #4facfe;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Button Global Components */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 128, 8, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 200, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
}

/* Header Section */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 7, 16, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
}

.logo a span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cart-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    padding: 0.6rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.cart-btn:hover {
    background: var(--gradient-accent);
    color: #000;
}

.cart-count {
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.1rem 0.4rem;
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section Styling */
.hero-section {
    padding: 10rem 0 6rem 0;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,128,8,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.floating-badge {
    position: absolute;
    background: rgba(19, 17, 41, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-badge h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.floating-badge p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.badge-1 { bottom: 20px; right: -20px; }
.badge-2 { top: 40px; left: -20px; }

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgba(255,255,255,0.01);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    max-width: 700px;
}

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-card {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 128, 8, 0.3);
}

.about-card i {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Bento Box Grid Categories */
.categories-section { padding: 6rem 0; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: var(--transition-smooth);
    filter: brightness(0.4);
}

.bento-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.2);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.bento-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 700;}
.bento-content p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 1rem; max-width: 80%;}

.bento-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 1; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }

/* Bento Features */
.bento-features { padding: 6rem 0; background: rgba(0,0,0,0.2); }
.features-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.card-gradient {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255,128,8,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i { font-size: 1.5rem; color: var(--primary-color); }
.card-gradient h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.card-gradient p { color: var(--text-gray); font-size: 0.95rem; }

/* All 10 Product Pages Main Container */
.all-products-container { padding: 6rem 0; }
.section-main-title { text-align: center; margin-bottom: 5rem; }
.section-main-title h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 1rem; }
.section-main-title p { color: var(--text-gray); }

.product-page-section {
    padding: 4rem 0;
    margin-bottom: 6rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.page-header-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    border-right: 4px solid var(--secondary-color);
    padding-right: 1.5rem;
}

.page-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(255,128,8,0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
}

.page-header-info h3 { font-size: 1.8rem; font-weight: 800; }
.hover-tag { font-size: 0.85rem; font-weight: 400; color: var(--text-gray); margin-right: 1rem; background: rgba(255,255,255,0.05); padding: 0.2rem 0.6rem; border-radius: 4px;}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* -------------------------------------------------- */
/* HOVER STYLE 1: Zoom & Reveal Overlay (Page 1) */
/* -------------------------------------------------- */
.style-hover-1 .product-card {
    background: var(--bg-surface);
    border-radius: 16px;
    overflow: hidden;
}
.style-hover-1 .img-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}
.style-hover-1 .img-container img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition-smooth);
}
.style-hover-1 .overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(19, 17, 41, 0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition-smooth);
}
.style-hover-1 .product-card:hover .img-container img { transform: scale(1.1); filter: blur(2px); }
.style-hover-1 .product-card:hover .overlay { opacity: 1; }
.style-hover-1 .add-to-cart {
    background: var(--gradient-accent); border:none; padding: 0.8rem 1.5rem; border-radius: 20px; font-weight:700; cursor:pointer;
}
.style-hover-1 .details { padding: 1.5rem; }

/* -------------------------------------------------- */
/* HOVER STYLE 2: Slide Up Info Card (Page 2) */
/* -------------------------------------------------- */
.style-hover-2 .product-card {
    position: relative; height: 380px; border-radius: 20px; overflow: hidden;
}
.style-hover-2 .img-container { width:100%; height:100%; }
.style-hover-2 .img-container img { width:100%; height:100%; object-fit: cover; }
.style-hover-2 .details-slide {
    position: absolute; bottom: -80px; left: 0; width: 100%; background: linear-gradient(to top, #131129 80%, rgba(19,17,41,0));
    padding: 2rem 1.5rem; transition: var(--transition-smooth);
}
.style-hover-2 .product-card:hover .details-slide { bottom: 0; }
.style-hover-2 .details-slide .add-to-cart { background: #fff; border:none; width:100%; padding:0.6rem; margin-top:1rem; font-weight:700; border-radius:8px; cursor:pointer;}

/* -------------------------------------------------- */
/* HOVER STYLE 3: Scale Border Dynamic (Page 3) */
/* -------------------------------------------------- */
.style-hover-3 .product-card {
    background: #110f24; padding: 1.5rem; border-radius: 12px; position: relative; transition: var(--transition-smooth);
}
.style-hover-3 .product-card img { width:100%; height: 240px; object-fit: cover; border-radius: 8px; }
.style-hover-3 .border-line {
    position: absolute; background: var(--primary-color); transition: var(--transition-smooth);
}
.style-hover-3 .line-top { top:0; right:0; width:0; height: 3px; }
.style-hover-3 .line-bottom { bottom:0; left:0; width:0; height: 3px; }
.style-hover-3 .product-card:hover .line-top { width: 100%; }
.style-hover-3 .product-card:hover .line-bottom { width: 100%; }
.style-hover-3 .product-card:hover { background: #181535; }
.style-hover-3 .details-static { margin-top: 1rem; }
.style-hover-3 .add-to-cart-simple { border: 1px solid var(--primary-color); background:none; color:var(--primary-color); padding:0.4rem 1rem; border-radius:6px; cursor:pointer; margin-top:0.5rem;}

/* -------------------------------------------------- */
/* HOVER STYLE 4: Grayscale to Color Gradients (Page 4) */
/* -------------------------------------------------- */
.style-hover-4 .product-card {
    background: var(--bg-surface); border-radius: 20px; overflow: hidden; transition: var(--transition-smooth);
}
.style-hover-4 .product-card img {
    width:100%; height: 260px; object-fit: cover; filter: grayscale(100%); transition: var(--transition-smooth);
}
.style-hover-4 .product-card:hover img { filter: grayscale(0%); }
.style-hover-4 .product-card:hover { box-shadow: 0 10px 30px rgba(0, 242, 254, 0.2); transform: translateY(-5px); }
.style-hover-4 .details-box { padding: 1.5rem; }
.style-hover-4 .view-more-btn { color: var(--neon-blue); font-size: 0.85rem; cursor: pointer; display:block; margin-top: 0.5rem;}

/* -------------------------------------------------- */
/* HOVER STYLE 5: Double Layer Text Switch (Page 5) */
/* -------------------------------------------------- */
.style-hover-5 .product-card {
    background: #15132c; border-radius: 16px; overflow: hidden;
}
.style-hover-5 .image-inner { height: 250px; overflow: hidden; }
.style-hover-5 .image-inner img { width: 100%; height: 100%; object-fit: cover; }
.style-hover-5 .caption-container {
    position: relative; height: 60px; overflow: hidden; background: #1d1a3a; padding: 1rem;
}
.style-hover-5 .caption-normal, .style-hover-5 .caption-hover {
    transition: var(--transition-smooth); width: 100%;
}
.style-hover-5 .caption-hover { color: var(--primary-color); position: absolute; top: 60px; }
.style-hover-5 .product-card:hover .caption-normal { transform: translateY(-40px); opacity: 0; }
.style-hover-5 .product-card:hover .caption-hover { top: 15px; }

/* -------------------------------------------------- */
/* HOVER STYLE 6: Rotate Card Slightly & Brighten (Page 6) */
/* -------------------------------------------------- */
.style-hover-6 .product-card {
    background: var(--gradient-dark-card); border-radius: 24px; padding: 1rem; transition: var(--transition-smooth);
}
.style-hover-6 .product-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 18px; transition: var(--transition-smooth); }
.style-hover-6 .product-card:hover { transform: rotateZ(2deg) scale(1.02); }
.style-hover-6 .kid-title { margin-top: 1rem; font-weight:700; display:flex; justify-content:space-between;}
.style-hover-6 .k-price { color: #ff6b81; }

/* -------------------------------------------------- */
/* HOVER STYLE 7: Circle Mask Inset Expand (Page 7) */
/* -------------------------------------------------- */
.style-hover-7 .product-card { text-align: center; }
.style-hover-7 .spotlight-wrapper {
    height: 280px; border-radius: 50% 50% 0 0; overflow:hidden; margin-bottom:1rem; transition: var(--transition-smooth); background: #221f47;
}
.style-hover-7 .spotlight-wrapper img { width:100%; height:100%; object-fit:cover; transition: var(--transition-smooth); }
.style-hover-7 .product-card:hover .spotlight-wrapper { border-radius: 20px; }
.style-hover-7 .product-card:hover img { transform: scale(1.08); }

/* -------------------------------------------------- */
/* HOVER STYLE 8: Neon Glow Border & Backdrop Shine (Page 8) */
/* -------------------------------------------------- */
.style-hover-8 .product-card {
    background: #0f0d22; border-radius: 16px; padding: 1.2rem; border: 1px solid transparent; transition: var(--transition-smooth);
}
.style-hover-8 .product-card img { width:100%; height:270px; object-fit:cover; border-radius:12px; }
.style-hover-8 .product-card:hover {
    border-color: #ff007f; box-shadow: 0 0 20px rgba(255, 0, 127, 0.4); transform: translateY(-3px);
}
.style-hover-8 .light-meta { margin-top: 1rem; display:flex; justify-content:space-between; align-items:center;}

/* -------------------------------------------------- */
/* HOVER STYLE 9: Image Mirror Flip 3D (Page 9) */
/* -------------------------------------------------- */
.style-hover-9 .product-card {
    perspective: 1000px; height: 320px;
}
.style-hover-9 .card-flipper {
    position: relative; width: 100%; height: 100%; transition: transform 0.6s; transform-style: preserve-3d;
}
.style-hover-9 .product-card:hover .card-flipper { transform: rotateY(180deg); }
.style-hover-9 .front, .style-hover-9 .back {
    position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 20px; overflow: hidden;
}
.style-hover-9 .front img { width:100%; height:100%; object-fit:cover; }
.style-hover-9 .tag-title { position: absolute; bottom: 0; background: rgba(0,0,0,0.7); width:100%; padding:0.8rem; text-align:center;}
.style-hover-9 .back {
    background: #1c1936; transform: rotateY(180deg); padding: 2rem; display: flex; flex-direction: column; justify-content: center; border: 2px solid var(--primary-color);
}
.style-hover-9 .price-b { color: var(--primary-color); font-size:1.3rem; font-weight:700; margin-top:1rem; }

/* -------------------------------------------------- */
/* HOVER STYLE 10: Blur & Slide Up Icon Palette (Page 10) */
/* -------------------------------------------------- */
.style-hover-10 .product-card { background: var(--bg-surface); border-radius:16px; padding:1rem;}
.style-hover-10 .acc-wrapper { position: relative; height: 240px; overflow: hidden; border-radius: 12px; }
.style-hover-10 .acc-wrapper img { width: 100%; height:100%; object-fit: cover; transition: var(--transition-smooth); }
.style-hover-10 .pop-icons {
    position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); display: flex; gap: 1rem; transition: var(--transition-smooth);
}
.style-hover-10 .pop-icons button {
    width: 40px; height: 40px; border-radius: 50%; border:none; background: #fff; color:#000; cursor:pointer; display:flex; align-items:center; justify-content:center; transition: var(--transition-smooth);
}
.style-hover-10 .pop-icons button:hover { background: var(--primary-color); color:#fff; }
.style-hover-10 .product-card:hover img { filter: blur(3px) brightness(0.7); }
.style-hover-10 .product-card:hover .pop-icons { bottom: 20px; }

/* Pricing Section */
.pricing-section { padding: 6rem 0; background: rgba(255,255,255,0.01); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; align-items: center; }
.price-card { background: #121026; border-radius: 24px; padding: 3rem 2rem; border: 1px solid rgba(255,255,255,0.05); text-align: center; transition: var(--transition-smooth); }
.price-card.popular { background: #19163a; border: 2px solid var(--secondary-color); position: relative; padding: 4rem 2rem; }
.price-card.popular .badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gradient-accent); color:#000; padding: 0.3rem 1.5rem; border-radius: 20px; font-weight:700; font-size:0.8rem;}
.price-val { font-size: 3rem; font-weight:900; color: var(--primary-color); margin: 1.5rem 0; }
.price-val span { font-size: 1rem; color: var(--text-gray); font-weight:400; }
.price-card ul { list-style:none; margin: 2rem 0; text-align: right; display:flex; flex-direction:column; gap:0.8rem; }
.price-card ul li { font-size:0.95rem; color: var(--text-gray); }
.price-card ul li::before { content: "✓ "; color: var(--primary-color); margin-left: 0.5rem; font-weight:700;}
.price-card.popular ul li::before { color: var(--secondary-color); }
.price-card:hover { transform: translateY(-10px); }

/* Contact Section */
.contact-section { padding: 6rem 0; }
.contact-box-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; padding: 4rem; }
.contact-info-side h3 { font-size: 2rem; font-weight:800; margin-bottom: 1.5rem; }
.contact-info-side p { color: var(--text-gray); margin-bottom: 2.5rem; }
.info-item { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.info-item i { font-size: 1.3rem; color: var(--primary-color); }
.form-group { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text-gray); }
.form-group input, .form-group textarea {
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); padding: 0.8rem 1rem; border-radius: 10px; color:#fff; font-size:0.95rem; transition: var(--transition-smooth);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-color); outline: none; background: rgba(0,0,0,0.5); }
.btn-block { width: 100%; padding: 1rem; }

/* Footer */
.main-footer-bottom { background: #05040a; border-top: 1px solid rgba(255,255,255,0.05); padding: 2rem 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-content p { color: var(--text-gray); font-size: 0.9rem; }
.footer-bottom-content p span { color: var(--primary-color); font-weight:700; }
.social-links { display: flex; gap: 1.5rem; }
.social-links a { color: var(--text-gray); font-size: 1.2rem; transition: var(--transition-smooth); }
.social-links a:hover { color: var(--primary-color); }

/* Responsive Design (Mobile / Tablet Hamburger Menu) */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-surface);
        padding: 2rem; border-bottom: 2px solid var(--primary-color); display: none;
    }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-container, .about-grid, .features-layout, .pricing-grid, .contact-box-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .bento-large, .bento-medium { grid-column: span 1; grid-row: span 1; }
    .hero-title { font-size: 2.5rem; }
    .contact-box-wrapper { padding: 2rem; }
}
@media (max-width: 576px) {
    .products-grid { grid-template-columns: 1fr; }
}