/* ===== MODERN CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
/* Hardware acceleration for animations */
.order-notification,
.product__card,
.hero__image,
.scroll-top {
    will-change: transform;
    transform: translateZ(0);
}

/* CSS Containment for performance */
.product__card {
    contain: layout style paint;
}

.order-notification {
    contain: layout style;
}

/* Reduce paint operations */
.product__img {
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

input, textarea {
    border: none;
    outline: none;
    font-family: inherit;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    /* Clean Light Palette (Apple/Google Inspired) */
    --primary-color: #2563eb;
    --secondary-color: #0ea5e9;
    --accent-color: #06b6d4;
    --success-color: #059669;
    --warning-color: #f59e0b;
    --error-color: #dc2626;
    --text-primary: #1f2937;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --border-color: #e0e0e0;
    
    /* Ultra Light Gradients */
    --gradient-primary: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
    --gradient-secondary: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    --gradient-accent: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, #f1f5f9 70%, #e2e8f0 100%);
    
    /* Ultra Light Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --header-height: 80px;
    --container-max: 1280px;
    --container-padding: 1.5rem;
    --section-padding: 6rem 0;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border: 1px solid var(--primary-color);
}

.btn--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(20px);
}

.btn--secondary:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--primary-color);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand__logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.brand__tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 0.5rem;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active-link {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav__link i {
    font-size: 0.9rem;
}

.nav__toggle {
    display: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    opacity: 0.3;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
    position: relative;
    z-index: 1;
}

.hero__content {
    color: var(--text-primary);
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.typewriter-container {
    position: relative;
    display: inline-block;
}

.typewriter-text {
    color: var(--text-primary);
    position: relative;
    min-height: 1.2em;
    display: inline-block;
}

.typewriter-text::after {
    content: '|';
    color: var(--primary-color);
    animation: blink 1s infinite;
    font-weight: 400;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero__title-accent {
    background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-weight: 900;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero__logo-container {
    width: 350px;
    height: 350px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.hero__logo {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero__logo-container::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    opacity: 0.2;
}

.hero__logo-container::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    animation: rotate 30s linear infinite reverse;
    opacity: 0.1;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.hero__scroll-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== SECTION HEADERS ===== */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== PAGE HEADER (for products.html) ===== */
.page-header {
    background: var(--gradient-hero);
    padding: 8rem 0 4rem;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    opacity: 0.3;
}

.page-header__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header__title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header__title i {
    color: var(--primary-color);
}

.page-header__description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.page-header__breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
}

.page-header__breadcrumb a:hover {
    opacity: 0.8;
}

/* ===== PRODUCTS CATEGORIES ===== */
.products__categories {
    margin-bottom: 4rem;
}

.categories__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.category__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.category__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category__card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category__card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.category__card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== STORE SECTION ===== */
.products__store {
    margin-bottom: 4rem;
    overflow: hidden;
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--white);
}

.store__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    padding: 0 2rem;
}

.store__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.iframe__container {
    position: relative;
    width: 100%;
    min-height: 1200px;
    background: var(--white);
    border: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.shopier__iframe {
    width: 100%;
    min-height: 1200px;
    border: none;
    display: block;
}

.iframe__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    background: var(--white);
}

.loading__spinner {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
    color: var(--primary-color);
}

.loading__text {
    font-size: 1.1rem;
    font-weight: 500;
}

.iframe__fallback {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.fallback__content {
    max-width: 400px;
    margin: 0 auto;
}

.fallback__content i {
    font-size: 4rem;
    color: var(--warning-color);
    margin-bottom: 1.5rem;
}

.fallback__content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.fallback__content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.products__features {
    margin-top: 4rem;
}

.features__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.feature__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature__card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature__card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature__card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== TRACKING SECTION ===== */
.tracking {
    background: var(--white);
}

.tracking__content {
    max-width: 800px;
    margin: 0 auto;
}

.tracking__form {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.form__group {
    margin-bottom: 2rem;
}

.form__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.form__label i {
    color: var(--primary-color);
}

.form__input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form__input.error {
    border-color: var(--error-color);
}

.form__error {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form__error.show {
    display: block;
}

.tracking__results {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out;
}

.results__header {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 2rem;
    text-align: center;
}

.results__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.results__number {
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'Courier New', monospace;
}

.results__progress {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.progress__bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress__fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease-out;
    width: 0%;
}

.progress__status {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

.results__timeline {
    padding: 2rem;
}

.timeline__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline__item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    width: 2px;
    height: calc(100% + 0.5rem);
    background: var(--border-color);
}

.timeline__icon {
    width: 2rem;
    height: 2rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline__icon.active {
    background: var(--primary-color);
    color: var(--white);
    animation: pulse 2s infinite;
}

.timeline__content {
    flex: 1;
    padding-top: 0.25rem;
}

.timeline__title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline__description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.timeline__time {
    color: var(--text-light);
    font-size: 0.8rem;
}

.results__info {
    padding: 2rem;
    background: var(--gray-50);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.info__item i {
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--gray-50);
}

.info__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info__card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.info__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.info__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card__icon {
    width: 4rem;
    height: 4rem;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 2rem;
    background: var(--gradient-accent);
    color: var(--primary-color);
}

.card__content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card__content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.card__link:hover {
    color: var(--secondary-color);
}

.card__highlight {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer__brand {
    max-width: 350px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer__group {
    display: flex;
    flex-direction: column;
}

.group__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.group__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.group__list a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.group__list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer__brand {
    max-width: 350px;
}

.footer__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.footer__description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
}

.social__link {
    width: 2.8rem;
    height: 2.8rem;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.social__link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.footer__group {
    display: flex;
    flex-direction: column;
}

.group__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.group__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.group__list a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.group__list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer__bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer__copy {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer__payments {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.footer__payments i {
    font-size: 1.8rem;
    color: var(--text-light);
    transition: var(--transition);
}

.footer__payments i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== FAQ STYLES ===== */
.faq {
    background: var(--white);
}

.faq__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq__category {
    margin-bottom: 3rem;
}

.faq__category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.faq__category-title i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.faq__item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq__item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.faq__question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, #fafafb 100%);
    transition: all 0.3s ease;
    position: relative;
}

.faq__question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq__question:hover::before {
    transform: scaleY(1);
}

.faq__question:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.faq__question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq__question i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 1.5rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
}

.faq__question:hover i {
    background: rgba(255, 255, 255, 0.2);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--white);
    padding: 0;
}
/* ===== POLICY PAGES STYLES ===== */
.policy {
    background: var(--white);
}

.policy__content {
    max-width: 900px;
    margin: 0 auto;
}

.policy__section {
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.policy__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.policy__icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.policy__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.policy__text {
    padding: 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.policy__text h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.policy__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.policy__list li:hover {
    background: var(--gray-50);
}

.policy__list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.highlight-box {
    background: var(--gradient-accent);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-box i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.warning-box {
    background: #fef3f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #7f1d1d;
}

.warning-list li::before {
    content: "⚠️";
    flex-shrink: 0;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.info-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.info-box i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-box h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.step__number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step__content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-method {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.payment-method i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.payment-method h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.company-info {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.company-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.company-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.company-details i {
    color: var(--primary-color);
    width: 1.25rem;
}

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.data-category {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.data-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.data-category i {
    color: var(--primary-color);
}

.data-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-category li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.sharing-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.partner {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.partner i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.partner h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.cookie-type h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.security-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.rights-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.rights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary-color);
}

.rights-list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-color);
    width: 1.25rem;
}

.policy-contact {
    background: var(--gray-50);
}

.faq__answer p {
    padding: 2rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.faq__item.active .faq__question {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.faq__item.active .faq__question::before {
    transform: scaleY(1);
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.2);
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding: 0;
}

.faq-contact {
    background: var(--gray-50);
}

.faq-contact .section__title {
    color: var(--text-primary);
}

.faq-contact .section__description {
    color: var(--text-secondary);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer__brand {
        max-width: none;
        margin-bottom: 2rem;
    }
    
    .footer__social {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .footer__links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
    }
    
    .footer__group {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 4rem 0;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 6rem;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .nav__link {
        width: 100%;
        padding: 1rem;
        justify-content: flex-start;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
    }
    
    .brand__logo {
        height: 2.5rem;
    }
    
    .brand__tagline {
        font-size: 0.65rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .typewriter-text {
        font-size: 2.5rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__logo-container {
        width: 250px;
        height: 250px;
        padding: 1.5rem;
    }
    
    .hero__logo {
        max-width: 70%;
        max-height: 70%;
    }
    
    .page-header__title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .categories__grid,
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info__cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer__brand {
        max-width: none;
        margin-bottom: 0;
    }
    
    .footer__title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .footer__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer__social {
        justify-content: center;
        margin-top: 1rem;
        gap: 0.8rem;
    }
    
    .social__link {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .footer__links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        justify-items: center;
    }
    
    .footer__group {
        text-align: center;
    }
    
    .group__title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .group__list {
        gap: 0.5rem;
    }
    
    .group__list a {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        padding-top: 2rem;
    }
    
    .footer__payments {
        gap: 1rem;
    }
    
    .footer__payments i {
        font-size: 1.5rem;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .tracking__form {
        padding: 2rem;
    }
    
    .results__info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .typewriter-text {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        border-radius: var(--radius-lg);
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .hero__logo-container {
        width: 200px;
        height: 200px;
        padding: 1rem;
    }
    
    .hero__logo {
        max-width: 65%;
        max-height: 65%;
    }
    
    .page-header__title {
        font-size: 2rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .category__card,
    .feature__card,
    .info__card {
        padding: 2rem 1.5rem;
    }
    
    .tracking__form {
        padding: 1.5rem;
    }
    
    .iframe__container {
        min-height: 800px;
    }
    
    .shopier__iframe {
        min-height: 800px;
    }
    
    .products__store {
        margin-left: calc(-50vw + 50%);
        width: 100vw;
    }
}

/* ===== VERY SMALL MOBILE DEVICES (375px and below) ===== */
@media screen and (max-width: 375px) {
    .hero__title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .typewriter-text {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero__description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .hero__logo-container {
        width: 180px;
        height: 180px;
        padding: 0.75rem;
    }
    
    .page-header__title {
        font-size: 1.75rem;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero__content {
        padding: 0 0.5rem;
    }
    
    .brand__tagline {
        font-size: 0.6rem;
    }
    
    .category__card,
    .feature__card,
    .info__card {
        padding: 1.5rem 1rem;
    }
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured {
    background-color: var(--bg-secondary);
    position: relative;
}

.featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product__card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.product__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
}

.product__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product__card:hover .product__img {
    transform: scale(1.1);
}

.product__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    z-index: 2;
}

.product__badge.new {
    background: var(--success-color);
}

.product__badge.bestseller {
    background: var(--warning-color);
}

.product__content {
    padding: 1.5rem;
}

.product__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product__description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price__current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price__old {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating__stars {
    display: flex;
    gap: 0.25rem;
    color: var(--warning-color);
}

.rating__count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.featured__cta {
    text-align: center;
}

/* ===== RESPONSIVE STYLES FOR FEATURED PRODUCTS ===== */
@media screen and (max-width: 768px) {
    .featured__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product__card {
        max-width: 100%;
    }
    
    .product__image {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .featured__grid {
        gap: 1rem;
    }
    
    .product__content {
        padding: 1rem;
    }
}

/* ===== GELİŞMİŞ SATIN ALDI BİLDİRİM SİSTEMİ ===== */
.order-notification {
    position: fixed;
    bottom: 20px;
    right: -300px;
    width: 280px;
    max-width: 280px;
    background: #ffffff;
    color: #2d3748;
    padding: 0;
    border-radius: 14px;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    z-index: 9999;
    opacity: 0;
    transform: translateX(110%) scale(0.9);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(148, 163, 184, 0.15);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.order-notification.show {
    right: 20px;
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Pulse animasyonu arka planı */
.notification__pulse {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.08), transparent);
    animation: pulse-sweep 3s infinite;
    pointer-events: none;
}

@keyframes pulse-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Header kısmı */
.notification__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    position: relative;
}

.notification__avatar {
    position: relative;
    margin-right: 10px;
}

.avatar__initial {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.avatar__initial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: avatar-shine 2s infinite;
}

@keyframes avatar-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.avatar__online {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 2px solid white;
    border-radius: 50%;
    animation: online-pulse 2s infinite;
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

@keyframes online-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
    }
}

.notification__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.notification__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badge-shine 2s infinite;
}

@keyframes badge-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.notification__badge i {
    font-size: 16px;
    animation: bounce-icon 1.5s infinite alternate;
}

@keyframes bounce-icon {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-3px) scale(1.1); }
}

.notification__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(71, 85, 105, 0.1);
    border: none;
    color: #64748b;
    font-size: 12px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification__close:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

/* Body kısmı */
.notification__body {
    padding: 0 16px 16px;
}

.notification__customer {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #000000 !important;
    letter-spacing: 0.2px;
    opacity: 1 !important;
}

.notification__customer .location {
    color: #64748b;
    font-weight: 500;
    font-size: 12px;
    margin-left: 6px;
}

.notification__product {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    position: relative;
    overflow: hidden;
}

.notification__product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.product__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product__title {
    font-weight: 600;
    color: #000000 !important;
    line-height: 1.4;
    font-size: 12px;
    letter-spacing: 0.1px;
    opacity: 1 !important;
}

.product__action {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #059669;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2px;
}

.product__action i {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px;
    border-radius: 6px;
    font-size: 10px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

/* Footer kısmı */
.notification__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    padding-top: 2px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin-top: 10px;
    padding-top: 10px;
}

.notification__time,
.notification__status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.notification__time {
    color: #64748b;
}

.notification__status {
    color: #059669;
    font-weight: 700;
}

.notification__status i {
    color: #10b981;
    font-size: 12px;
    animation: check-pulse 2s infinite;
}

@keyframes check-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Hover efektleri */
.order-notification:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 35px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

/* Entrance animasyonu */
.order-notification.show {
    animation:
        slide-in-bounce 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        notification-glow 3s ease-in-out infinite 1s;
}

@keyframes slide-in-bounce {
    0% {
        transform: translateX(120%) scale(0.8) rotateY(15deg);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px) scale(1.05) rotateY(-2deg);
        opacity: 0.9;
    }
    80% {
        transform: translateX(5px) scale(0.98) rotateY(1deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0) scale(1) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes notification-glow {
    0%, 100% {
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.15),
            0 10px 25px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(59, 130, 246, 0.1);
    }
    50% {
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.15),
            0 10px 25px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(59, 130, 246, 0.3),
            0 0 20px rgba(59, 130, 246, 0.2);
    }
}

/* Mobile responsive - Küçük ve sade */
@media screen and (max-width: 768px) {
    .order-notification {
        bottom: 12px;
        right: -100%;
        left: 12px;
        width: auto;
        max-width: 280px;
        min-height: 60px;
        transform: translateY(120%) scale(0.95);
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .order-notification.show {
        right: 12px;
        transform: translateY(0) scale(1);
    }
    
    .notification__header {
        padding: 8px 10px 4px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .notification__avatar {
        flex-shrink: 0;
    }
    
    .avatar__initial {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .notification__badge {
        padding: 2px 5px;
        font-size: 7px;
        flex: 1;
        text-align: center;
        background: #10b981;
        color: white;
        border-radius: 4px;
    }
    
    .notification__close {
        width: 16px;
        height: 16px;
        padding: 2px;
        font-size: 6px;
        flex-shrink: 0;
        opacity: 0.7;
    }
    
    .notification__body {
        padding: 0 10px 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .notification__customer {
        font-size: 10px;
        margin-bottom: 0;
        line-height: 1.1;
        color: #000000 !important;
        flex-shrink: 0;
        opacity: 1 !important;
    }
    
    .notification__product {
        display: none; /* Sade olması için ürün kartını gizle */
    }
    
    .product__info {
        flex: 1;
        min-width: 0;
    }
    
    .product__title {
        font-size: 9px !important;
        font-weight: 500;
        margin-bottom: 0;
        line-height: 1.1;
        color: #334155 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .notification__footer {
        display: none; /* Sade olması için footer'ı gizle */
    }
    
    .notification__time {
        font-size: 8px;
        color: #64748b;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .notification__status {
        display: none; /* Sade olması için durum badge'ini gizle */
    }
    
    .product__title {
        font-size: 11px;
    }
    
    .notification__close {
        width: 20px;
        height: 20px;
        padding: 4px;
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .order-notification {
        bottom: 12px;
        left: 12px;
        right: -100%;
        max-width: 240px;
    }
    
    .order-notification.show {
        right: 12px;
    }
    
    .notification__header {
        padding: 10px 12px 6px;
    }
    
    .avatar__initial {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .notification__badge {
        padding: 3px 6px;
        font-size: 8px;
    }
    
    .notification__body {
        padding: 0 12px 12px;
    }
    
    .notification__customer {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .product__title {
        font-size: 10px;
    }
    
    .notification__close {
        width: 18px;
        height: 18px;
        padding: 3px;
        font-size: 8px;
    }
}

/* Dark mode uyumluluğu */
@media (prefers-color-scheme: dark) {
    .order-notification {
        background: #ffffff;
        color: #2d3748;
        border-color: rgba(148, 163, 184, 0.15);
        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.12),
            0 5px 15px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(59, 130, 246, 0.1);
    }
    
    .notification__customer {
        color: #2d3748;
    }
    
    .notification__customer .location {
        color: #000000 !important;
    }
    
    .notification__product {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-color: rgba(148, 163, 184, 0.2);
    }
    
    .notification__product .product__title {
        color: #000000 !important;
    }
    
    .notification__footer {
        border-color: rgba(148, 163, 184, 0.3);
    }
    
    .notification__time {
        color: #94a3b8;
    }
}

/* ===== ENHANCED PRODUCT CARDS WITH HOVER EFFECTS ===== */
.product__card {
    position: relative;
    overflow: hidden;
}

.product__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product__card:hover::before {
    opacity: 1;
}

.product__badge {
    z-index: 3;
}

/* ===== NOTIFICATION PULSE ANIMATION ===== */
@keyframes notificationPulse {
    0% {
        box-shadow: var(--shadow-dark);
    }
    50% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    100% {
        box-shadow: var(--shadow-dark);
    }
}

.order-notification.show {
    animation: notificationPulse 2s ease-in-out;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .hero__scroll,
    .nav__toggle,
    .nav__close,
    .btn {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .hero {
        background: none;
        color: var(--text-primary);
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        background: var(--white);
    }
}

/* End of file */