/* =========================================================
   AFRIGADGETS — MAIN STYLESHEET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0b7a53;
    --primary-dark: #075c3e;
    --accent: #f5b400;
    --dark: #111827;
    --text: #374151;
    --muted: #6b7280;
    --light: #f6f8f7;
    --white: #ffffff;
    --border: #e5e7eb;
    --success: #087443;
    --danger: #dc2626;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.5;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   PROMO BAR
   ========================================================= */

.promo-bar {
    height: 44px;
    background: linear-gradient(
        90deg,
        #d8a91d,
        #f0ca4c,
        #d8a91d
    );
    color: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.promo-track {
    display: flex;
    align-items: center;
    gap: 70px;
    white-space: nowrap;
    min-width: max-content;
    animation: promoMove 35s linear infinite;
}

.promo-track span {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-track i {
    font-size: 10px;
}

@keyframes promoMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-40%);
    }
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 5000;
}

.header-content {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.logo {
    font-size: 27px;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
}

.logo span {
    color: var(--primary);
}

.search-box {
    flex: 1;
    max-width: 620px;
    height: 46px;
    display: flex;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--light);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    background: transparent;
    font-size: 14px;
}

.search-box button {
    width: 55px;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 16px;
}

.search-box button:hover {
    background: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--dark);
}

.header-action i {
    font-size: 19px;
}

.cart-button b {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: grid;
    place-items: center;
    font-size: 10px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navigation {
    position: relative;
    z-index: 5000;
    background: white;
    border-bottom: 1px solid var(--border);
}

.nav-content {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.nav-content > a,
.dropdown-trigger {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
}

.nav-content > a:hover,
.dropdown-trigger:hover {
    color: var(--primary);
}

.deals-link {
    color: #d97706;
}


/* =========================================================
   SHOP ALL DROPDOWN
   ========================================================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10000;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 7px;
}

.dropdown-trigger i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);

    width: 230px;

    background: #111111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;

    padding: 8px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 99999;
}

.dropdown-menu::before {
    content: "";

    position: absolute;
    top: -5px;
    left: 50%;

    width: 10px;
    height: 10px;

    background: #111111;

    border-left: 1px solid rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,0.1);

    transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 11px 13px;

    border-radius: 8px;

    color: white;
    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.dropdown-menu a i {
    width: 18px;
    color: #e5b82f;
    text-align: center;
}

.dropdown-menu a:hover {
    background: rgba(229,184,47,0.12);
    color: #e5b82f;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    z-index: 1;

    min-height: 520px;

    background:
        linear-gradient(
            110deg,
            #eef8f3,
            #ffffff
        );

    overflow: hidden;
}

.hero-content {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 600px;
}

.hero-label,
.section-label {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero h1 {
    margin-top: 14px;

    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.05;

    color: var(--dark);

    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    margin-top: 22px;

    max-width: 520px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 30px;

    display: flex;
    gap: 12px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    min-height: 48px;

    padding: 0 22px;

    border-radius: 7px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-weight: 700;
    font-size: 14px;

    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: white;
    color: var(--dark);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--primary);
}


/* =========================================================
   HERO IMAGE AREA
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background: #d9efe5;

    z-index: 1;
}

.hero-image-grid {
    position: relative;

    width: 520px;
    height: 430px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    z-index: 3;

    transform: translateX(80px);
}

.hero-image-card {
    width: 220px;
    height: 190px;

    overflow: hidden;

    border-radius: 18px;

    background: #111;

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-image-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.hero-image-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.3);
}

.hero-image-card:hover img {
    transform: scale(1.06);
}

.hero-image-card:nth-child(3) {
    grid-column: 1 / 3;

    justify-self: center;

    width: 220px;
}


/* =========================================================
   FLOATING HERO CARDS
   ========================================================= */

.floating-card {
    position: absolute;

    width: 65px;
    height: 65px;

    border-radius: 15px;

    background: white;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.12);

    display: grid;
    place-items: center;

    font-size: 25px;

    color: var(--primary);

    z-index: 5;
}

.card-one {
    top: 65px;
    left: 25px;
}

.card-two {
    top: 85px;
    right: 20px;
}

.card-three {
    bottom: 65px;
    right: 45px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    border-bottom: 1px solid var(--border);
    background: white;
}

.features-grid {
    min-height: 110px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    align-items: center;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: center;
}

.feature > i {
    font-size: 24px;
    color: var(--primary);
}

.feature h3 {
    color: var(--dark);
    font-size: 14px;
}

.feature p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 80px 0;
}

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: end;

    margin-bottom: 35px;
}

.section-heading h2 {
    margin-top: 7px;

    color: var(--dark);

    font-size: 30px;
}

.section-heading > a {
    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 15px;
}

.category-card {
    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 25px 15px;

    text-align: center;

    transition: 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);

    border-color: var(--primary);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.07);
}

.category-icon {
    width: 65px;
    height: 65px;

    margin: auto;

    border-radius: 50%;

    background: #eaf6f0;

    color: var(--primary);

    display: grid;
    place-items: center;

    font-size: 25px;
}

.category-card h3 {
    margin-top: 16px;

    color: var(--dark);

    font-size: 15px;
}

.category-card p {
    margin-top: 6px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products-section {
    background: var(--light);
}

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.product-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;

    overflow: hidden;

    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.08);
}

.product-image {
    height: 220px;

    background: #f3f4f6;

    display: grid;
    place-items: center;

    color: #9ca3af;

    font-size: 55px;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

.product-info {
    padding: 18px;
}

.product-category {
    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;
}

.product-name {
    margin-top: 7px;

    color: var(--dark);

    font-size: 15px;

    font-weight: 700;
}

.product-price {
    margin-top: 12px;

    color: var(--dark);

    font-size: 20px;

    font-weight: 800;
}

.add-cart {
    width: 100%;

    margin-top: 15px;

    height: 40px;

    border: none;

    border-radius: 6px;

    background: var(--primary);

    color: white;

    font-weight: 700;
}

.add-cart:hover {
    background: var(--primary-dark);
}


/* =========================================================
   PROMO SECTION
   ========================================================= */

.promo-section {
    padding: 80px 0;
}

.promo {
    min-height: 320px;

    padding: 55px;

    border-radius: 18px;

    background: var(--primary);

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    overflow: hidden;
}

.promo span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.promo h2 {
    margin-top: 10px;

    font-size: 38px;

    line-height: 1.15;
}

.promo p {
    margin: 15px 0 25px;

    opacity: 0.85;
}

.promo-icon {
    font-size: 180px;

    opacity: 0.15;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter {
    background: #f8faf9;
}

.newsletter-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.newsletter h2 {
    margin-top: 8px;

    color: var(--dark);

    font-size: 28px;
}

.newsletter p {
    margin-top: 8px;

    color: var(--muted);
}

.newsletter-form {
    display: flex;

    min-width: 430px;
}

.newsletter-form input {
    flex: 1;

    height: 48px;

    border: 1px solid var(--border);

    padding: 0 15px;

    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    border: none;

    background: var(--primary);

    color: white;

    padding: 0 20px;

    font-weight: 700;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: var(--dark);

    color: #d1d5db;

    padding-top: 65px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer .logo {
    color: white;
}

.footer-brand p {
    max-width: 310px;

    margin-top: 15px;

    line-height: 1.7;

    font-size: 13px;
}

.socials {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.socials a {
    width: 35px;
    height: 35px;

    border: 1px solid #374151;

    border-radius: 50%;

    display: grid;
    place-items: center;
}

.socials a:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: white;
}

.footer h3 {
    color: white;

    font-size: 14px;

    margin-bottom: 18px;
}

.footer-grid > div:not(.footer-brand) a {
    display: block;

    font-size: 13px;

    margin-bottom: 12px;

    color: #9ca3af;
}

.footer-grid > div:not(.footer-brand) a:hover {
    color: white;
}

.footer-grid p {
    font-size: 13px;

    margin-bottom: 12px;

    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #29303d;

    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;

    font-size: 12px;
}


/* =========================================================
   SHOP PAGE
   ========================================================= */

.shop-header {
    padding: 65px 0;

    background: #f4f8f6;
}

.shop-header h1 {
    margin-top: 10px;

    color: var(--dark);

    font-size: 42px;
}

.shop-header p {
    margin-top: 10px;

    color: var(--muted);
}

.shop-section {
    padding: 55px 0 80px;
}

.shop-layout {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 35px;
}

.shop-sidebar {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.filter-box {
    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 20px;
}

.filter-box h3 {
    color: var(--dark);

    font-size: 15px;

    margin-bottom: 15px;
}

.category-filter {
    display: block;

    width: 100%;

    text-align: left;

    border: none;

    background: transparent;

    padding: 10px 8px;

    border-radius: 5px;

    color: var(--text);
}

.category-filter:hover,
.category-filter.active {
    background: #eaf6f0;

    color: var(--primary);

    font-weight: 700;
}

.filter-box label {
    display: block;

    margin-bottom: 12px;

    font-size: 13px;
}

.filter-box input {
    margin-right: 8px;
}

.shop-toolbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}

#resultCount {
    color: var(--muted);

    font-size: 14px;
}

#sortProducts {
    height: 40px;

    border: 1px solid var(--border);

    border-radius: 6px;

    padding: 0 12px;

    background: white;

    outline: none;
}

.shop-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
}

.no-products {
    text-align: center;

    padding: 80px 20px;

    color: var(--muted);
}

.no-products i {
    font-size: 50px;

    margin-bottom: 20px;
}

.no-products h2 {
    color: var(--dark);

    margin-bottom: 8px;
}


/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */

.product-detail-section {
    padding: 35px 0 80px;
}

.breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 35px;

    color: var(--muted);

    font-size: 13px;
}

.breadcrumb i {
    font-size: 9px;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.product-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;
}

.main-product-image {
    height: 500px;

    border-radius: 15px;

    background: #f4f5f6;

    display: grid;
    place-items: center;

    color: #9ca3af;

    font-size: 130px;

    overflow: hidden;
}

.main-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    padding: 30px;
}

.thumbnail-row {
    display: flex;

    gap: 12px;

    margin-top: 15px;
}

.thumbnail {
    width: 75px;
    height: 75px;

    border: 1px solid var(--border);

    border-radius: 8px;

    display: grid;
    place-items: center;

    background: #f5f5f5;

    color: #9ca3af;

    font-size: 25px;

    overflow: hidden;
}

.thumbnail.active {
    border: 2px solid var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 5px;
}

.product-information {
    padding-top: 15px;
}

.product-information h1 {
    margin-top: 12px;

    color: var(--dark);

    font-size: 40px;

    line-height: 1.15;
}

.product-rating {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

    font-size: 13px;
}

.stars {
    color: #f59e0b;

    letter-spacing: 2px;
}

.review-count {
    color: var(--muted);
}

.detail-price {
    margin-top: 25px;

    color: var(--dark);

    font-size: 34px;

    font-weight: 800;
}

.product-description {
    margin-top: 25px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 15px;
}

.stock-status {
    margin-top: 20px;

    color: var(--primary);

    font-weight: 700;

    font-size: 14px;
}

.stock-status i {
    margin-right: 7px;
}

.quantity-section {
    margin-top: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 300px;
}

.quantity-section > span {
    font-size: 14px;

    font-weight: 700;
}

.quantity-control {
    display: flex;

    border: 1px solid var(--border);

    border-radius: 6px;

    overflow: hidden;
}

.quantity-control button {
    width: 38px;
    height: 38px;

    border: none;

    background: white;

    font-size: 18px;
}

.quantity-control button:hover {
    background: var(--light);
}

.quantity-control span {
    width: 40px;

    display: grid;

    place-items: center;

    border-left: 1px solid var(--border);

    border-right: 1px solid var(--border);
}

.product-actions {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.add-cart.large,
.buy-now {
    height: 52px;

    padding: 0 28px;
}

.buy-now {
    border: none;

    border-radius: 6px;

    background: var(--dark);

    color: white;

    font-weight: 700;
}

.buy-now:hover {
    background: #000;
}

.product-benefits {
    border-top: 1px solid var(--border);

    margin-top: 30px;

    padding-top: 25px;

    display: flex;

    flex-direction: column;

    gap: 15px;
}

.product-benefits div {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--muted);

    font-size: 13px;
}

.product-benefits i {
    width: 25px;

    color: var(--primary);
}

.related-section {
    padding: 70px 0;

    background: var(--light);
}


/* =========================================================
   CART
   ========================================================= */

.cart-header {
    padding: 60px 0;

    background: #f4f8f6;
}

.cart-header h1 {
    margin-top: 10px;

    color: var(--dark);

    font-size: 40px;
}

.cart-section {
    padding: 55px 0 90px;
}

.cart-layout {
    display: grid;

    grid-template-columns: 1fr 350px;

    gap: 40px;

    align-items: start;
}

.cart-items-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    padding-bottom: 18px;

    margin-bottom: 5px;
}

.cart-items-header h2 {
    color: var(--dark);

    font-size: 20px;
}

.cart-items-header span {
    color: var(--muted);

    font-size: 13px;
}

.cart-item {
    display: grid;

    grid-template-columns:
        90px 1fr auto auto auto;

    gap: 18px;

    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);
}

.cart-product-image {
    width: 90px;
    height: 90px;

    border-radius: 9px;

    background: #f3f4f6;

    display: grid;
    place-items: center;

    color: #9ca3af;

    font-size: 30px;

    overflow: hidden;
}

.cart-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.cart-product-name {
    display: block;

    margin-top: 6px;

    color: var(--dark);

    font-weight: 700;

    font-size: 15px;
}

.cart-product-name:hover {
    color: var(--primary);
}

.cart-price {
    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;
}

.cart-quantity {
    display: flex;

    align-items: center;

    border: 1px solid var(--border);

    border-radius: 6px;

    overflow: hidden;
}

.cart-quantity button {
    width: 32px;
    height: 34px;

    border: none;

    background: white;

    font-size: 16px;
}

.cart-quantity button:hover {
    background: var(--light);
}

.cart-quantity span {
    width: 35px;
    height: 34px;

    display: grid;
    place-items: center;

    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);

    font-size: 13px;

    font-weight: 700;
}

.cart-item-total {
    min-width: 90px;

    text-align: right;

    color: var(--dark);

    font-size: 15px;

    font-weight: 800;
}

.remove-cart-item {
    width: 35px;
    height: 35px;

    border: none;

    background: transparent;

    color: #9ca3af;
}

.remove-cart-item:hover {
    color: var(--danger);
}

.continue-shopping {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;
}


/* =========================================================
   CART SUMMARY
   ========================================================= */

.cart-summary {
    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 25px;

    position: sticky;

    top: 20px;
}

.cart-summary h2 {
    color: var(--dark);

    font-size: 20px;

    margin-bottom: 25px;
}

.summary-row {
    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;

    font-size: 14px;
}

.summary-row span {
    color: var(--muted);
}

.summary-row strong {
    color: var(--dark);
}

.summary-divider {
    border-top: 1px solid var(--border);

    margin: 20px 0;
}

.summary-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 22px;
}

.summary-total strong {
    color: var(--dark);

    font-size: 24px;
}

.checkout-button {
    width: 100%;

    min-height: 50px;

    border-radius: 6px;

    background: var(--primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 700;
}

.checkout-button:hover {
    background: var(--primary-dark);
}

.secure-checkout {
    text-align: center;

    margin-top: 15px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.empty-cart {
    text-align: center;

    padding: 100px 20px;
}

.empty-cart > i {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: #eaf6f0;

    color: var(--primary);

    display: grid;
    place-items: center;

    margin: 0 auto 25px;

    font-size: 35px;
}

.empty-cart h2 {
    color: var(--dark);

    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--muted);

    margin-bottom: 25px;
}


/* =========================================================
   CHECKOUT
   ========================================================= */

.checkout-header {
    border-bottom: 1px solid var(--border);

    background: white;
}

.checkout-header-content {
    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.checkout-secure {
    color: var(--muted);

    font-size: 13px;
}

.checkout-secure i {
    margin-right: 6px;

    color: var(--primary);
}

.checkout-page {
    padding: 35px 0 90px;

    background: #f8faf9;

    min-height: calc(100vh - 80px);
}

.checkout-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 30px;
}

.checkout-layout {
    display: grid;

    grid-template-columns: 1fr 360px;

    gap: 35px;

    align-items: start;
}

.checkout-main {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.checkout-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 28px;
}

.checkout-card-title {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 28px;
}

.checkout-number {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    display: grid;
    place-items: center;

    font-weight: 800;

    font-size: 14px;

    flex-shrink: 0;
}

.checkout-card-title h2 {
    color: var(--dark);

    font-size: 19px;
}

.checkout-card-title p {
    color: var(--muted);

    font-size: 12px;

    margin-top: 4px;
}


/* =========================================================
   CHECKOUT FORM
   ========================================================= */

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--dark);

    font-size: 12px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--border);

    border-radius: 6px;

    padding: 12px 13px;

    outline: none;

    background: white;

    font-size: 13px;
}

.form-group input,
.form-group select {
    height: 45px;
}

.form-group textarea {
    min-height: 100px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}


/* =========================================================
   BANK TRANSFER
   ========================================================= */

.bank-payment-box {
    border: 1px solid var(--border);

    border-radius: 9px;

    overflow: hidden;
}

.bank-payment-header {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

    background: #f5f9f7;
}

.bank-payment-icon {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: white;

    color: var(--primary);

    display: grid;
    place-items: center;

    font-size: 18px;
}

.bank-payment-header h3 {
    color: var(--dark);

    font-size: 15px;
}

.bank-payment-header p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 4px;
}

.bank-details {
    padding: 20px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.bank-detail {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.bank-detail span {
    color: var(--muted);

    font-size: 11px;
}

.bank-detail strong {
    color: var(--dark);

    font-size: 13px;
}

.transfer-amount {
    margin: 0 20px 15px;

    padding: 17px;

    background: #f4f8f6;

    border-radius: 7px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.transfer-amount span {
    font-size: 12px;

    font-weight: 700;

    color: var(--dark);
}

.transfer-amount strong {
    color: var(--primary);

    font-size: 21px;
}

.payment-reference {
    margin: 0 20px 15px;

    border: 1px dashed var(--primary);

    border-radius: 7px;

    padding: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.payment-reference div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.payment-reference span {
    font-size: 10px;

    color: var(--muted);

    text-transform: uppercase;

    font-weight: 700;
}

.payment-reference strong {
    font-size: 18px;

    letter-spacing: 1px;

    color: var(--dark);
}

.payment-reference button {
    border: 1px solid var(--border);

    background: white;

    padding: 8px 12px;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 700;
}

.payment-reference button:hover {
    border-color: var(--primary);

    color: var(--primary);
}

.reference-warning {
    display: flex;

    gap: 9px;

    margin: 0 20px 20px;

    padding: 12px;

    background: #fffaf0;

    border-radius: 6px;

    color: #795548;
}

.reference-warning p {
    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   POP UPLOAD
   ========================================================= */

.pop-section {
    margin-top: 25px;
}

.pop-heading h3 {
    font-size: 14px;

    color: var(--dark);
}

.pop-heading p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 4px;
}

.pop-upload {
    margin-top: 13px;

    min-height: 150px;

    border: 2px dashed var(--border);

    border-radius: 8px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 7px;

    text-align: center;

    cursor: pointer;

    padding: 20px;
}

.pop-upload:hover {
    border-color: var(--primary);

    background: #f8fbf9;
}

.pop-upload > i {
    font-size: 28px;

    color: var(--primary);

    margin-bottom: 5px;
}

.pop-upload strong {
    font-size: 13px;

    color: var(--dark);
}

.pop-upload span {
    color: var(--muted);

    font-size: 10px;
}

.pop-file-name {
    max-width: 100%;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   PLACE ORDER
   ========================================================= */

.place-order-button {
    width: 100%;

    border: none;

    background: var(--success);

    color: white;

    padding: 15px 20px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    margin-top: 20px;

    transition: 0.2s;
}

.place-order-button:hover {
    background: #055c35;
}

.place-order-button:active {
    transform: scale(0.99);
}

.checkout-message {
    display: none;

    margin-top: 15px;

    padding: 12px 14px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 600;
}

.checkout-message.success {
    display: block;

    background: #eaf7f0;

    color: var(--success);
}

.checkout-message.error {
    display: block;

    background: #fff0f0;

    color: var(--danger);
}


/* =========================================================
   CHECKOUT SUMMARY
   ========================================================= */

.checkout-summary {
    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 25px;

    position: sticky;

    top: 20px;
}

.checkout-summary h2 {
    color: var(--dark);

    font-size: 20px;

    margin-bottom: 20px;
}

.checkout-items {
    display: flex;

    flex-direction: column;

    gap: 15px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.checkout-item {
    display: grid;

    grid-template-columns: 55px 1fr auto;

    gap: 10px;

    align-items: center;
}

.checkout-item-image {
    width: 55px;
    height: 55px;

    border-radius: 6px;

    background: #f3f4f6;

    color: #9ca3af;

    display: grid;

    place-items: center;

    position: relative;

    overflow: hidden;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.checkout-item-image span {
    position: absolute;

    top: -6px;
    right: -6px;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    display: grid;
    place-items: center;

    font-size: 9px;

    font-weight: 700;
}

.checkout-item-info {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}

.checkout-item-info strong {
    color: var(--dark);

    font-size: 12px;
}

.checkout-item-info span {
    color: var(--muted);

    font-size: 11px;
}

.checkout-item-price {
    color: var(--dark);

    font-size: 12px;

    white-space: nowrap;
}

.checkout-summary-line {
    display: flex;

    justify-content: space-between;

    margin-top: 16px;

    font-size: 13px;
}

.checkout-summary-line span {
    color: var(--muted);
}

.checkout-summary-line strong {
    color: var(--dark);
}

.checkout-summary-divider {
    border-top: 1px solid var(--border);

    margin: 20px 0;
}

.checkout-total {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.checkout-total span {
    color: var(--dark);

    font-weight: 700;
}

.checkout-total strong {
    color: var(--dark);

    font-size: 24px;
}

.edit-cart {
    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 20px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-hero {
    padding: 90px 0 70px;

    background: #f5f5f5;
}

.faq-hero h1 {
    margin: 12px 0 18px;

    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.05;

    font-weight: 800;

    color: #111;
}

.faq-hero h1 span {
    color: #d6a91f;
}

.faq-hero p {
    max-width: 650px;

    color: #666;

    font-size: 17px;

    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;

    background: white;
}

.faq-layout {
    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 70px;

    align-items: start;
}

.faq-sidebar-card {
    background: #111;

    color: white;

    padding: 30px;

    border-radius: 18px;

    position: sticky;

    top: 30px;
}

.faq-sidebar-card > i {
    font-size: 32px;

    color: #e5b82f;

    margin-bottom: 20px;
}

.faq-sidebar-card h3 {
    font-size: 21px;

    margin-bottom: 10px;
}

.faq-sidebar-card p {
    color: #bbb;

    line-height: 1.6;

    font-size: 14px;

    margin-bottom: 24px;
}

.faq-category {
    margin-bottom: 20px;

    margin-top: 45px;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category h2 {
    margin-top: 8px;

    font-size: 28px;

    color: #111;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;

    border: 0;

    background: transparent;

    padding: 23px 5px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    font-family: inherit;

    font-size: 16px;

    font-weight: 600;

    color: #111;
}

.faq-question i {
    color: #d6a91f;

    font-size: 14px;

    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 0;

    padding: 0 40px 23px 5px;

    color: #666;

    line-height: 1.7;

    font-size: 15px;
}

.faq-item.active .faq-question {
    color: #c59b16;
}


/* =========================================================
   ABOUT / CONTACT GENERAL
   ========================================================= */

.page-hero {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #eef8f3,
            #ffffff
        );
}

.page-hero h1 {
    margin-top: 10px;

    color: var(--dark);

    font-size: clamp(40px, 6vw, 65px);

    line-height: 1.05;
}

.page-hero p {
    max-width: 650px;

    margin-top: 18px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE — 900px
   ========================================================= */

@media (max-width: 900px) {

    .header-content {
        flex-wrap: wrap;

        padding: 15px 0;
    }

    .search-box {
        order: 3;

        flex-basis: 100%;

        max-width: none;
    }

    .hero-content {
        flex-direction: column;

        padding-top: 60px;
    }

    .hero-text {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;

        min-height: 500px;

        margin-top: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);

        padding: 25px 0;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .shop-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-details {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;

        order: -1;
    }

    .newsletter-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;

        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .faq-sidebar-card {
        position: static;
    }

    .hero-image-grid {
        transform: translateX(30px);
    }
}


/* =========================================================
   RESPONSIVE — 600px
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: 94%;
    }

    .promo-bar {
        height: 38px;
    }

    .promo-track span {
        font-size: 10px;
    }

    .header-content {
        gap: 15px;
    }

    .logo {
        font-size: 23px;
    }

    .header-actions {
        margin-left: auto;

        gap: 15px;
    }

    .header-action span {
        display: none;
    }

    .navigation .nav-content {
        gap: 20px;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .navigation .nav-content::-webkit-scrollbar {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;

        padding: 60px 0 20px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 650px;
    }

    .hero-circle {
        width: 270px;
        height: 270px;
    }

    .hero-image-grid {
        width: 340px;

        height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;

        transform: none;
    }

    .hero-image-card,
    .hero-image-card:nth-child(3) {
        width: 190px;

        height: 150px;
    }

    .floating-card {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;

        gap: 20px 10px;
    }

    .feature {
        align-items: flex-start;
    }

    .feature > i {
        font-size: 20px;
    }

    .feature h3 {
        font-size: 12px;
    }

    .feature p {
        font-size: 10px;
    }

    .section {
        padding: 55px 0;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 17px;
    }

    .promo {
        padding: 35px 25px;
    }

    .promo h2 {
        font-size: 30px;
    }

    .promo-icon {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .shop-header h1 {
        font-size: 32px;
    }

    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .shop-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-product-image {
        height: 300px;

        font-size: 90px;
    }

    .product-information h1 {
        font-size: 32px;
    }

    .product-actions {
        flex-direction: column;
    }

    .add-cart.large,
    .buy-now {
        width: 100%;
    }

    .cart-item {
        grid-template-columns: 70px 1fr auto;

        gap: 12px;
    }

    .cart-product-image {
        width: 70px;
        height: 70px;
    }

    .cart-quantity {
        grid-column: 2;

        width: fit-content;
    }

    .cart-item-total {
        grid-column: 3;

        grid-row: 1;

        min-width: auto;
    }

    .remove-cart-item {
        grid-column: 3;

        grid-row: 2;
    }

    .checkout-card {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .bank-details {
        grid-template-columns: 1fr;
    }

    .payment-reference {
        align-items: flex-start;

        flex-direction: column;
    }

    .payment-reference button {
        width: 100%;
    }

    .checkout-header-content {
        min-height: 65px;
    }

    .checkout-secure {
        font-size: 11px;
    }

    .faq-hero {
        padding: 65px 0 50px;
    }

    .faq-section {
        padding: 55px 0;
    }

    .faq-question {
        font-size: 15px;

        padding: 20px 0;
    }

    .faq-answer p {
        padding-left: 0;

        padding-right: 20px;
    }

    .faq-category h2 {
        font-size: 24px;
    }

    .page-hero {
        padding: 60px 0;
    }
}
