:root {
    --bg: #05070d;
    --bg2: #07111f;
    --card: rgba(7, 17, 31, 0.86);
    --card2: rgba(10, 22, 38, 0.86);
    --blue: #009dff;
    --blue2: #00e5ff;
    --orange: #ff7a00;
    --orange2: #ffb000;
    --text: #ffffff;
    --muted: #a7b0c0;
    --border: rgba(0, 157, 255, 0.25);
    --radius: 22px;
    --shadow-blue: 0 0 30px rgba(0, 157, 255, 0.35);
    --shadow-orange: 0 0 30px rgba(255, 122, 0, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 157, 255, 0.18), transparent 32%),
        radial-gradient(circle at 80% 20%, rgba(255, 122, 0, 0.16), transparent 28%),
        linear-gradient(180deg, #05070d 0%, #07111f 50%, #04060a 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

/* HEADER */

.site-header {
    min-height: 86px;
    padding: 0 34px;
    display: flex;
    align-items: center;
    gap: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(5, 7, 13, 0.92);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 250px;
}

.brand-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), #123dff 45%, var(--orange));
    box-shadow: var(--shadow-blue), var(--shadow-orange);
}

.brand-name {
    font-size: 30px;
    letter-spacing: 4px;
    font-weight: 900;
}

.brand-tagline {
    font-size: 13px;
    color: var(--muted);
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
    transition: 0.25s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange2);
}

.hot-badge {
    font-size: 10px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #ff2d2d;
    color: white;
    position: relative;
    top: -10px;
    margin-left: 3px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-box {
    width: 300px;
    height: 48px;
    border: 1px solid rgba(0, 157, 255, 0.35);
    background: rgba(10, 22, 38, 0.75);
    display: flex;
    align-items: center;
    border-radius: 14px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    color: white;
    padding: 0 15px;
    font-size: 15px;
}

.search-box button {
    width: 52px;
    height: 100%;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.login-btn {
    padding: 15px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    box-shadow: var(--shadow-orange);
    font-weight: 900;
    white-space: nowrap;
}

.mini-cart {
    min-width: 52px;
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(0, 157, 255, 0.12);
    border: 1px solid rgba(0, 157, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 900;
}

.mini-cart span {
    background: var(--orange);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 24px;
}

/* HOME HERO */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1.25fr 350px;
    gap: 28px;
    padding: 44px 34px 20px;
    min-height: 590px;
}

.hero-left {
    padding-top: 30px;
}

.small-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.28);
    color: #ffd099;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero-left h1 {
    font-size: clamp(48px, 5vw, 82px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 18px;
}

.hero-left h1 span {
    background: linear-gradient(90deg, #ffffff, var(--orange), var(--orange2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-left h2 {
    color: #66c9ff;
    font-size: 26px;
    margin-bottom: 28px;
}

.hero-points {
    display: grid;
    gap: 17px;
    margin-bottom: 30px;
}

.hero-points div {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
}

.point-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 20px;
}

.point-icon.blue {
    background: rgba(0,157,255,0.13);
    box-shadow: var(--shadow-blue);
}

.point-icon.orange {
    background: rgba(255,122,0,0.13);
    box-shadow: var(--shadow-orange);
}

.point-icon.red {
    background: rgba(255, 56, 56, 0.18);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.primary-btn {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    box-shadow: var(--shadow-orange);
    font-size: 18px;
}

.secondary-btn {
    border: 1px solid rgba(0,157,255,0.35);
    background: rgba(10, 22, 38, 0.72);
    color: #cbeeff;
}

.hero-center {
    position: relative;
    min-height: 520px;
}

.neon-orbit {
    width: 430px;
    height: 430px;
    border: 2px solid rgba(0, 157, 255, 0.28);
    border-right-color: rgba(255,122,0,0.65);
    border-bottom-color: rgba(255,122,0,0.4);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    box-shadow:
        inset 0 0 40px rgba(0,157,255,0.15),
        0 0 60px rgba(0,157,255,0.22),
        0 0 70px rgba(255,122,0,0.16);
    animation: rotateOrbit 14s linear infinite;
}

@keyframes rotateOrbit {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.morocco-map {
    width: 210px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255,122,0,0.9), rgba(255,176,0,0.55));
    clip-path: polygon(55% 0%, 68% 10%, 62% 24%, 76% 36%, 69% 52%, 82% 66%, 61% 75%, 56% 94%, 33% 100%, 31% 82%, 19% 68%, 32% 52%, 23% 35%, 37% 22%, 39% 9%);
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(255, 122, 0, 0.8);
    display: grid;
    place-items: center;
}

.map-glow {
    color: #00ff86;
    font-size: 56px;
    text-shadow: 0 0 20px #00ff86;
    z-index: 2;
}

.map-text {
    position: absolute;
    bottom: 42px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
}

.floating-card {
    width: 178px;
    min-height: 98px;
    padding: 16px;
    background: rgba(7, 17, 31, 0.86);
    border: 1px solid rgba(0, 157, 255, 0.55);
    border-radius: 18px;
    position: absolute;
    box-shadow: var(--shadow-blue);
    display: grid;
    gap: 6px;
    animation: floatCard 3.5s ease-in-out infinite;
}

.floating-card span {
    font-size: 26px;
}

.floating-card strong {
    font-size: 15px;
}

.floating-card small {
    color: var(--muted);
    line-height: 1.35;
}

.orange-card {
    border-color: rgba(255, 122, 0, 0.65);
    box-shadow: var(--shadow-orange);
}

.card-1 { left: 5%; top: 12%; }
.card-2 { left: 38%; top: 2%; }
.card-3 { right: 4%; top: 12%; }
.card-4 { left: 0; top: 38%; }
.card-5 { right: 2%; top: 40%; }
.card-6 { left: 12%; bottom: 10%; }
.card-7 { right: 7%; bottom: 8%; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* TRENDING */

.trending-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--shadow-blue);
}

.panel-header,
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.panel-header h3,
.section-header h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-header a,
.section-header a {
    color: var(--muted);
    font-size: 13px;
}

.trend-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trend-img {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

.trend-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.trend-info p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 5px;
}

.trend-info strong {
    color: var(--orange2);
}

.stars,
.rating {
    color: #ffcc00;
    font-size: 12px;
    margin-top: 5px;
}

.stars span,
.rating span {
    color: var(--muted);
}

.offer-box {
    margin-top: 18px;
    padding: 24px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,122,0,0.28), transparent 35%),
        linear-gradient(135deg, rgba(0,157,255,0.12), rgba(255,122,0,0.08));
    border: 1px solid rgba(255, 122, 0, 0.35);
    text-align: center;
}

.offer-box h3 {
    font-size: 25px;
}

.offer-box strong {
    display: block;
    color: var(--orange2);
    font-size: 22px;
    margin: 8px 0;
}

.offer-box p {
    color: var(--muted);
    margin-bottom: 16px;
}

.offer-box a {
    display: inline-flex;
    padding: 13px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    font-weight: 900;
    box-shadow: var(--shadow-orange);
}

/* QUICK FEATURES */

.quick-features {
    padding: 8px 34px 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-card {
    min-height: 108px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(10, 22, 38, 0.78);
    border: 1px solid rgba(0, 157, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.25s;
}

.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue);
}

.quick-card.orange:hover {
    box-shadow: var(--shadow-orange);
}

.quick-card span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0,157,255,0.14);
    box-shadow: var(--shadow-blue);
    font-size: 26px;
}

.quick-card.orange span {
    background: rgba(255,122,0,0.15);
    box-shadow: var(--shadow-orange);
}

.quick-card h3 {
    margin-bottom: 5px;
}

.quick-card p {
    color: var(--muted);
    font-size: 14px;
}

.quick-card b {
    margin-left: auto;
    color: var(--muted);
    font-size: 30px;
}

/* PRODUCTS HOME */

.products-section {
    margin: 0 34px 24px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.72);
    border: 1px solid rgba(0, 157, 255, 0.2);
}

.section-header p {
    color: var(--muted);
    margin-top: 5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.product-card {
    min-height: 270px;
    padding: 16px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 70% 0%, rgba(0,157,255,0.14), transparent 40%),
        rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,122,0,0.45);
    box-shadow: var(--shadow-orange);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), #ff3d00);
    font-size: 10px;
    font-weight: 900;
    z-index: 4;
}

.product-image {
    height: 118px;
    display: grid;
    place-items: center;
    font-size: 70px;
    margin-top: 20px;
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.product-card p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.product-price strong {
    color: var(--orange2);
    font-size: 18px;
}

.product-price del {
    color: var(--muted);
    font-size: 13px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0,157,255,0.35);
    background: rgba(0,157,255,0.12);
    color: white;
    cursor: pointer;
    transition: 0.25s;
}

.cart-btn:hover {
    background: var(--orange);
}

/* SHOP PAGE */

.page-hero {
    margin: 34px;
    padding: 34px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 80% 10%, rgba(255,122,0,0.18), transparent 35%),
        radial-gradient(circle at 20% 20%, rgba(0,157,255,0.20), transparent 35%),
        rgba(7, 17, 31, 0.78);
    border: 1px solid rgba(0,157,255,0.25);
}

.page-hero.small {
    padding: 26px 34px;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    margin: 10px 0;
}

.page-hero p {
    color: var(--muted);
    max-width: 780px;
    line-height: 1.7;
}

.shop-tools {
    margin: 0 34px 24px;
    display: grid;
    gap: 18px;
}

.shop-search {
    display: flex;
    gap: 12px;
}

.shop-search input,
.form-group input,
.form-group textarea,
.cart-qty {
    width: 100%;
    background: rgba(10, 22, 38, 0.82);
    border: 1px solid rgba(0,157,255,0.25);
    color: white;
    border-radius: 14px;
    padding: 15px;
    outline: none;
    font-size: 15px;
}

.shop-search button,
.update-cart-btn,
.place-order-btn,
.checkout-btn,
.quick-add-btn,
.details-btn,
.add-to-cart-btn {
    border: 0;
    border-radius: 14px;
    padding: 14px 20px;
    color: white;
    font-weight: 900;
    cursor: pointer;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    box-shadow: var(--shadow-orange);
}

.category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(10,22,38,0.78);
    border: 1px solid rgba(0,157,255,0.25);
    color: #dff4ff;
    transition: 0.2s;
}

.pill:hover {
    background: rgba(0,157,255,0.18);
}

.catalog-grid {
    margin: 0 34px 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.catalog-card {
    position: relative;
    background: rgba(7, 17, 31, 0.84);
    border: 1px solid rgba(0,157,255,0.20);
    border-radius: 22px;
    padding: 18px;
    transition: 0.25s;
    overflow: hidden;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
    border-color: rgba(255,122,0,0.45);
}

.catalog-image {
    height: 150px;
    display: grid;
    place-items: center;
    font-size: 78px;
    margin-top: 20px;
    border-radius: 18px;
    background:
        radial-gradient(circle, rgba(0,157,255,0.18), transparent 55%),
        rgba(255,255,255,0.035);
}

.catalog-info {
    padding-top: 16px;
}

.sku {
    display: inline-flex;
    color: #66c9ff;
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: 900;
}

.catalog-info h3 {
    margin-bottom: 5px;
}

.catalog-info p {
    color: var(--muted);
    margin-bottom: 14px;
}

.price-lines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.price-lines div {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.price-lines small {
    color: var(--muted);
    display: block;
    margin-bottom: 5px;
}

.price-lines strong {
    color: var(--orange2);
}

.delivery-tags {
    display: grid;
    gap: 8px;
    margin: 14px 0;
}

.delivery-tags span {
    font-size: 13px;
    color: #dfefff;
}

.catalog-actions {
    display: flex;
    gap: 10px;
}

.catalog-actions form {
    flex: 1;
}

.details-btn,
.quick-add-btn {
    flex: 1;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
}

.details-btn {
    background: rgba(0,157,255,0.15);
    border: 1px solid rgba(0,157,255,0.28);
}

.quick-add-btn {
    width: 100%;
}

/* PRODUCT PAGE */

.product-page {
    margin: 34px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.product-gallery,
.product-details {
    background: rgba(7,17,31,0.84);
    border: 1px solid rgba(0,157,255,0.22);
    border-radius: 24px;
    padding: 28px;
}

.big-product-icon {
    min-height: 420px;
    display: grid;
    place-items: center;
    font-size: 170px;
    border-radius: 24px;
    background:
        radial-gradient(circle, rgba(0,157,255,0.22), transparent 55%),
        radial-gradient(circle at 70% 30%, rgba(255,122,0,0.12), transparent 42%),
        rgba(255,255,255,0.035);
    box-shadow: var(--shadow-blue);
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.gallery-thumbs span {
    flex: 1;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 32px;
}

.product-details h1 {
    font-size: clamp(34px, 4vw, 58px);
    margin-bottom: 8px;
}

.product-subtitle,
.product-description {
    color: var(--muted);
    line-height: 1.7;
}

.rating-line {
    color: #ffcc00;
    margin: 16px 0;
}

.rating-line span {
    color: var(--muted);
}

.stock-box {
    margin: 20px 0;
    padding: 16px;
    border-radius: 16px;
    background: rgba(0,157,255,0.10);
    border: 1px solid rgba(0,157,255,0.24);
    display: flex;
    justify-content: space-between;
}

.buy-form h3 {
    margin-bottom: 14px;
}

.buy-options {
    display: grid;
    gap: 14px;
}

.buy-option {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: 0.25s;
}

.buy-option.active {
    border-color: rgba(255,122,0,0.58);
    box-shadow: var(--shadow-orange);
}

.buy-option input {
    margin-top: 6px;
}

.buy-option strong,
.buy-option span,
.buy-option small {
    display: block;
}

.buy-option span {
    color: var(--orange2);
    margin: 7px 0;
}

.buy-option small {
    color: var(--muted);
}

.qty-row {
    margin: 18px 0;
    display: grid;
    gap: 8px;
}

.qty-row input {
    background: rgba(10,22,38,0.82);
    border: 1px solid rgba(0,157,255,0.25);
    color: white;
    border-radius: 14px;
    padding: 15px;
    outline: none;
}

.calc-box {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(0,0,0,0.20);
    border: 1px solid rgba(255,255,255,0.08);
}

.calc-box div {
    display: flex;
    justify-content: space-between;
}

.calc-box span {
    color: var(--muted);
}

.calc-box strong {
    color: var(--orange2);
}

.grand-total {
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.10);
    font-size: 20px;
}

.add-to-cart-btn {
    width: 100%;
    margin-top: 18px;
    font-size: 18px;
}

/* CART + CHECKOUT */

.cart-layout,
.checkout-layout {
    margin: 0 34px 34px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
}

.cart-card,
.summary-card,
.checkout-form,
.success-box,
.empty-box {
    background: rgba(7,17,31,0.84);
    border: 1px solid rgba(0,157,255,0.22);
    border-radius: 24px;
    padding: 24px;
}

.cart-head,
.cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 100px 1fr 90px;
    gap: 14px;
    align-items: center;
}

.cart-head {
    color: var(--muted);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-row {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-img {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.05);
    font-size: 32px;
}

.cart-product p {
    color: var(--muted);
    margin-top: 4px;
}

.type-badge {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0,157,255,0.12);
    border: 1px solid rgba(0,157,255,0.25);
    color: #cdeeff;
    font-size: 12px;
}

.orange-type {
    background: rgba(255,122,0,0.12);
    border-color: rgba(255,122,0,0.35);
    color: #ffd39b;
}

.cart-qty {
    padding: 10px;
}

.remove-link {
    color: #ff7878;
    font-size: 13px;
}

.update-cart-btn {
    margin-top: 18px;
}

.summary-card h2,
.checkout-form h2 {
    margin-bottom: 20px;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.summary-line span {
    color: var(--muted);
}

.summary-total {
    font-size: 22px;
    border-bottom: 0;
}

.summary-total strong {
    color: var(--orange2);
}

.summary-note {
    margin: 15px 0;
    padding: 13px;
    border-radius: 14px;
    background: rgba(255,122,0,0.10);
    border: 1px solid rgba(255,122,0,0.22);
    color: #ffd39b;
    font-size: 13px;
    line-height: 1.6;
}

.checkout-btn,
.continue-link {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.continue-link {
    color: #66c9ff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    color: #dfefff;
}

.place-order-btn {
    width: 100%;
    font-size: 18px;
}

.error-box {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,56,56,0.12);
    border: 1px solid rgba(255,56,56,0.25);
    margin-bottom: 16px;
}

.error-box p {
    color: #ffb0b0;
}

.mini-order-item {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mini-order-item span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    font-size: 24px;
}

.mini-order-item p {
    color: var(--muted);
    font-size: 13px;
}

.success-box,
.empty-box {
    margin: 0 34px 34px;
    text-align: center;
}

.success-box h2,
.empty-box h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.success-box > strong {
    display: inline-flex;
    margin: 16px 0;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(0,157,255,0.12);
    border: 1px solid rgba(0,157,255,0.25);
    color: #66c9ff;
    font-size: 24px;
}

.success-details {
    margin: 18px auto;
    max-width: 420px;
    text-align: left;
    color: var(--muted);
    line-height: 1.9;
}

/* BUSINESS MODEL */

.business-model {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 0 34px 24px;
}

.model-card {
    padding: 26px;
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.78);
    border: 1px solid rgba(0, 157, 255, 0.22);
    position: relative;
    overflow: hidden;
}

.wholesale-model {
    border-color: rgba(255,122,0,0.35);
}

.model-card span {
    font-size: 44px;
}

.model-card h2 {
    margin: 12px 0 8px;
}

.model-card p {
    color: var(--muted);
    max-width: 650px;
    line-height: 1.7;
}

.model-card ul {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    list-style: none;
}

.model-card li {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #dbefff;
    border: 1px solid rgba(255,255,255,0.08);
}

/* FOOTER */

.site-footer {
    margin: 0 34px 34px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.86);
    border: 1px solid rgba(0, 157, 255, 0.22);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.footer-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
}

.footer-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0,157,255,0.12);
    box-shadow: var(--shadow-blue);
    font-size: 26px;
}

.footer-icon.orange {
    background: rgba(255,122,0,0.12);
    box-shadow: var(--shadow-orange);
}

.footer-card h4 {
    color: #66c9ff;
    margin-bottom: 5px;
}

.footer-card p {
    color: var(--muted);
    font-size: 13px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #18c45c;
    color: white;
    font-weight: 900;
    padding: 14px 20px;
    border-radius: 999px;
    box-shadow: 0 0 30px rgba(24,196,92,0.45);
    z-index: 1200;
}

/* RESPONSIVE */

@media (max-width: 1250px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-center {
        min-height: 520px;
    }

    .quick-features,
    .products-grid,
    .site-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-page,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .site-header {
        padding: 0 18px;
        justify-content: space-between;
    }

    .brand {
        min-width: auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 86px;
        left: 18px;
        right: 18px;
        background: rgba(5, 7, 13, 0.97);
        border: 1px solid rgba(0,157,255,0.28);
        border-radius: 18px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        z-index: 2000;
    }

    .main-nav.open {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .hero-section,
    .quick-features,
    .business-model {
        padding-left: 18px;
        padding-right: 18px;
    }

    .products-section,
    .site-footer,
    .page-hero,
    .shop-tools,
    .catalog-grid,
    .product-page,
    .cart-layout,
    .checkout-layout,
    .success-box,
    .empty-box {
        margin-left: 18px;
        margin-right: 18px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-features,
    .products-grid,
    .business-model,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .cart-head {
        display: none;
    }

    .cart-row {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 54px;
    }

    .neon-orbit {
        width: 330px;
        height: 330px;
    }

    .morocco-map {
        width: 160px;
        height: 230px;
    }

    .floating-card {
        width: 160px;
    }

    .card-1 { left: 0; top: 6%; }
    .card-2 { right: 0; left: auto; top: 6%; }
    .card-3 { right: 0; top: 28%; }
    .card-4 { left: 0; top: 28%; }
    .card-5 { right: 0; top: 52%; }
    .card-6 { left: 0; bottom: 4%; }
    .card-7 { right: 0; bottom: 4%; }
}

@media (max-width: 560px) {
    .brand-name {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .brand-tagline {
        display: none;
    }

    .brand-icon {
        width: 44px;
        height: 44px;
        font-size: 26px;
    }

    .hero-left h1 {
        font-size: 44px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-center {
        min-height: auto;
        display: grid;
        gap: 12px;
    }

    .neon-orbit,
    .morocco-map {
        display: none;
    }

    .floating-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100%;
        margin-bottom: 0;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .shop-search {
        flex-direction: column;
    }

    .big-product-icon {
        min-height: 270px;
        font-size: 120px;
    }

    .price-lines {
        grid-template-columns: 1fr;
    }
}
.brand-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-blue), var(--shadow-orange);
}

.media-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-image img,
.catalog-image img,
.big-product-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.trend-img img,
.cart-img img,
.mini-order-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image,
.catalog-image,
.big-product-icon,
.trend-img,
.cart-img,
.mini-order-item span {
    overflow: hidden;
}

@media (max-width: 480px) {
    .brand-logo-img {
        width: 42px;
        height: 42px;
    }
}