/* =========================================
   Variables & Design Tokens
   ========================================= */
:root {
    /* Colors */
    --color-primary-gradient: linear-gradient(90deg, rgb(255, 180, 0) 0%, rgb(255, 122, 24) 100%);
    --color-blue: #5281c6;
    --color-green: #a5c110;
    --color-orange: #ffb400;
    --color-dark-orange: #ff7a18;
    --color-light-blue: #40b6b8;

    /* Neutrals */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-dark-gray: #0f0d0f;
    --color-gray: rgba(0, 0, 0, 0.502);
    --color-light-gray: rgba(0, 0, 0, 0.302);
    --color-border: #dde2e8;
    --color-bg-gray: #f2f5f8;
    --color-bg-light: #ecf4f3;

    /* Typography */
    --font-sans: 'IBM Plex Sans', sans-serif;
    --font-serif: 'Noto Serif', serif;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-s: 10px;
    --spacing-m: 15px;
    --spacing-l: 20px;
    --spacing-xl: 25px;
    --spacing-xxl: 30px;
    --spacing-jumbo: 40px;
    --spacing-mega: 50px;

    /* Layout */
    --wrap-width: 1350px;
    --wrap-padding: 25px;
    --header-height: 80px;

    /* Effects */
    --shadow-card: 0 0 27px 0 rgba(198, 203, 208, 0.71);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius-s: 5px;
    --radius-m: 6px;
    --radius-l: 10px;
    --radius-xl: 15px;
    --radius-circle: 50px;
    --transition: all 0.3s ease-in-out;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-bg-gray);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.25rem;
}

h2,
.h2 {
    font-size: 1.75rem;
}

h3,
.h3 {
    font-size: 1.5rem;
}

p {
    margin: 0 0 1rem 0;
    color: var(--color-gray);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =========================================
   Layout
   ========================================= */
.wrap {
    max-width: var(--wrap-width);
    margin: 0 auto;
    padding: 0 var(--wrap-padding);
    width: 100%;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    text-align: left;
}

.alignright {
    text-align: right;
}

/* Spacing Utilities */
.mt-20 {
    margin-top: 20px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-64 {
    margin-top: 64px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-64 {
    margin-bottom: 64px;
}

.pt-60 {
    padding-top: 60px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-20 {
    gap: 20px;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

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

.items-center {
    align-items: center;
}

/* =========================================
   Header
   ========================================= */
.header-site {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo__img {
    height: 40px;
    width: auto;
}

.site-nav {
    display: flex;
    gap: 30px;
}

.site-nav__link {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-black);
}

.site-nav__link:hover {
    color: var(--color-orange);
}

.header-site__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.header-site__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
}

.mobile-menu__content {
    background: var(--color-white);
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.mobile-menu.active .mobile-menu__content {
    transform: translateX(0);
}

.mobile-menu__close {
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.mobile-menu__link {
    font-size: 18px;
    font-weight: 500;
}

/* =========================================
   Footer
   ========================================= */
.footer-site {
    background: var(--color-white);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid var(--color-border);
}

.footer-site__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-site__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-site__title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-site__copyright {
    font-size: 0.9rem;
    color: var(--color-light-gray);
}

.footer-site__links {
    display: flex;
    gap: 20px;
}

.footer-site__link {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.footer-site__link:hover {
    color: var(--color-orange);
}


/* =========================================
   Components
   ========================================= */

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-m);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1.2;
}

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

.button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 24, 0.4);
    color: var(--color-white);
}

.button--tag {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-black);
    padding: 8px 16px;
    border-radius: var(--radius-circle);
    font-size: 14px;
}

.button--tag:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.button--small {
    padding: 8px 16px;
    font-size: 13px;
    background: var(--color-bg-gray);
    color: var(--color-gray);
}

.button--small:hover {
    background: var(--color-border);
    color: var(--color-black);
}

/* Copied Button State */
.button.copied {
    background-color: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}


/* Hero Block */
.hero-block {
    padding: 60px 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-brand-logo {
    margin-bottom: 25px;
    width: auto;
    min-width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    padding: 10px;
}

.hero-brand-logo img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-brand-logo__text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-orange);
}

.hero-block__desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-item__number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}

.stats-item__text {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 5px;
}

/* Sections */
.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-black);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-content h2 {
    margin-top: 40px;
}

/* Cards & Grids */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* Show logic for grid */
.items-grid--limited> :nth-child(n+9) {
    display: none;
}

.item-carusel {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid transparent;
}

.item-carusel:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
    border-color: var(--color-border);
}

.item-carusel__image-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-l);
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.item-carusel__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-carusel__placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
}

.item-carusel__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-black);
}

.item-carusel__content {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.item-carusel__desc {
    font-size: 0.9rem;
    color: var(--color-gray);
}


/* Info Grid (Delivery/Payment) */
.info-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 768px) {
    .info-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.info-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.info-card__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-bg-gray);
    padding-bottom: 15px;
}

.info-item {
    margin-bottom: 15px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    color: var(--color-black);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-l);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-item__question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__icon {
    font-size: 1.5rem;
    color: var(--color-orange);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 20px 20px;
    color: var(--color-gray);
    line-height: 1.6;
    border-top: 1px solid var(--color-bg-gray);
    margin-top: -10px;
    padding-top: 15px;
}

/* Promocodes */
.promocodes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 600px) {
    .promocodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

.promocode-card {
    background: #fff8e1;
    /* Light orange tint */
    border: 1px dashed var(--color-orange);
    border-radius: var(--radius-l);
    padding: 20px;
    position: relative;
    transition: transform 0.2s;
}

.promocode-card:hover {
    transform: scale(1.02);
}

.promocode-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark-orange);
    margin-bottom: 10px;
}

.promocode-card__desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

.breadcrumbs__link {
    color: var(--color-gray);
}

.breadcrumbs__link:hover {
    color: var(--color-orange);
}

.breadcrumbs__separator {
    margin: 0 8px;
    color: var(--color-light-gray);
}

.breadcrumbs__current {
    color: var(--color-black);
}

/* Alphabet Nav (Index Pages) */
.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.alphabet-nav__link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 600;
}

.alphabet-nav__link:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

/* 404 & Content Pages */
.text-block p {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-site__burger {
        display: flex;
    }

    .site-nav {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stats-item__number {
        font-size: 2rem;
    }
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

.stats-icon-large {
    font-size: 3rem;
}

.card-title-clean {
    border: none;
}

.button--tag-gray {
    background: var(--color-bg-gray);
}

.button--tag-gray:hover {
    background: var(--color-border);
}

.section-seo {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

.search-container {
    max-width: 600px;
    margin: 30px auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-l);
    font-size: 16px;
    transition: var(--transition);
    background: var(--color-white);
}

.search-input:focus {
    border-color: var(--color-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.2);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray);
    font-size: 20px;
    pointer-events: none;
}