:root {
    --primary: #871302;
    --white: #FFFFFF;
    --black: #1D1D1D;
    --grey-2: #848484;
    --border-grey: #D4D4D4;
}

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

html, body {
    width: 100%;
    max-width: 100%;
}

html {
    max-width: 100vw;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

/* Menu veya popup açıkken body scroll'unu engelle */
body.menu-open,
body.popup-open {
    overflow: hidden !important;
}

/* Top Bar Styles */
.top-bar {
    height: 40px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 101;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
    backface-visibility: hidden; /* Prevent flickering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Yükseklik değişmeyecek - layout shift önleme */
}

.top-bar.scrolled {
    transform: scaleY(0.875); /* 35/40 = 0.875 */
    transform-origin: top;
    /* Height değişmiyor - sadece scale */
}

.top-bar-container {
    width: 100%;
    padding: 0 200px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

.top-bar-message {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.top-bar-phone {
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-phone:hover {
    opacity: 0.8;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: 24px;
    height: 24px;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .top-bar-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        padding: 0 20px;
    }

    .top-bar-message {
        position: static;
        transform: none;
        font-size: 12px;
    }

    .top-bar-phone {
        font-size: 12px;
        gap: 5px;
    }

    .top-bar-socials {
        gap: 8px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        height: auto;
        min-height: 40px;
        padding: 8px 0;
    }

    .top-bar-content {
        flex-direction: column;
        height: auto;
        gap: 8px;
    }

    .top-bar-message {
        font-size: 11px;
    }

    .top-bar-right {
        gap: 12px;
    }

    .top-bar-phone {
        font-size: 11px;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Main Header Styles */
.main-header {
    height: 95px;
    background: var(--white);
    display: flex;
    align-items: center;
    position: sticky;
    top: 40px;
    z-index: 100;
    transition: background 0.3s ease, 
                box-shadow 0.3s ease,
                top 0.3s ease;
    will-change: transform, background, box-shadow;
    transform: translateZ(0); /* GPU acceleration */
    backface-visibility: hidden; /* Prevent flickering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Yükseklik değişmeyecek - layout shift önleme */
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    top: 35px;
    /* Height değişmiyor - sadece görsel efektler */
}

.header-container {
    width: 100%;
    padding: 0 200px;
}

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

/* Logo */
.header-logo {
    display: flex !important; /* Her ekran boyutunda görünür */
    align-items: center;
    padding-top: 10px;
    transition: padding-top 0.3s ease;
    will-change: padding-top;
    flex-shrink: 0; /* Logo küçülmesin */
    min-width: 80px; /* Minimum genişlik */
    order: 0; /* Her zaman en solda */
}

.header-logo img {
    height: 85px;
    width: auto;
    max-width: 200px; /* Maksimum genişlik */
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0) scale(1); /* GPU acceleration */
    backface-visibility: hidden;
    transform-origin: center top;
    display: block; /* Her zaman görünür */
}

.main-header.scrolled .header-logo {
    padding-top: 5px;
}

.main-header.scrolled .header-logo img {
    transform: translateZ(0) scale(0.75); /* ~64px / 85px = 0.75 */
    /* Height değişmiyor - sadece transform scale */
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

/* Products Menu */
.products-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.products-menu:hover {
    opacity: 0.8;
}

.products-menu svg {
    width: 24px;
    height: 24px;
}

.products-menu span {
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
}

/* Main Menu */
.main-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-link {
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-link:hover {
    opacity: 0.7;
}

.menu-link.active {
    display: flex;
    height: 44px;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    background: rgba(135, 19, 2, 0.20);
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* User Menu */
.user-menu-wrapper {
    position: relative;
}

.user-menu-button {
    display: flex;
    height: 54px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 2px solid var(--white);
    background: var(--primary);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.user-menu-button:hover {
    opacity: 0.9;
}

.user-menu-button.active svg:last-child {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    border-radius: 20px;
    border: 1px solid #EFEFEF;
    background: var(--white);
    box-shadow: 0 12px 24px -2px rgba(89, 74, 60, 0.12);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.user-dropdown-menu.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.user-dropdown-item:hover {
    background: rgba(135, 19, 2, 0.08);
}

.user-dropdown-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.user-dropdown-divider {
    height: 1px;
    background: #E4E4E4;
    margin: 8px 0;
}

.user-dropdown-logout {
    color: #DC2626;
}

.user-dropdown-logout:hover {
    background: rgba(220, 38, 38, 0.08);
}

/* Search Box */
.search-box {
    display: flex;
    width: 306px;
    height: 54px;
    padding: 12px 7px 12px 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    border: 1px solid var(--border-grey);
    background: var(--white);
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    color: var(--grey-2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    flex: 1;
}

.search-input::placeholder {
    color: var(--grey-2);
}

.search-button {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 30px;
    background: var(--primary);
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.search-button:hover {
    opacity: 0.8;
}

.search-button svg {
    width: 21px;
    height: 20px;
}

/* Icon Buttons */
.icon-button {
    display: flex;
    width: 54px;
    height: 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--border-grey);
    background: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.icon-button:hover {
    opacity: 0.7;
}

/* Login Button */
.login-button {
    display: flex;
    height: 54px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    border: 2px solid var(--white);
    background: var(--primary);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.login-button:hover {
    opacity: 0.8;
}

/* Header Mobile Responsive */
@media (max-width: 1400px) {
    .header-container {
        padding: 0 100px;
    }

    .search-box {
        width: 250px;
    }
}

@media (max-width: 1400px) {
    .header-container {
        padding: 0 100px;
    }
    
    /* Logo ara ekran boyutlarında görünür */
    .header-logo {
        display: flex !important;
        flex-shrink: 0;
        min-width: 80px;
    }
    
    .header-logo img {
        display: block !important;
    }
}

/* Tablet ve ara ekran boyutları (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        padding: 0 40px;
    }

    .header-content {
        gap: 15px;
        flex-wrap: nowrap; /* Logo kaybolmasın */
        justify-content: space-between;
        align-items: center;
    }

    /* Logo tablet boyutunda görünür ve solda */
    .header-logo {
        display: flex !important;
        flex-shrink: 0;
        min-width: 70px;
        order: 0;
        margin-right: 10px;
    }

    .header-logo img {
        height: 75px;
        max-width: 180px;
        display: block !important;
    }

    /* Navigation tablet boyutunda görünür */
    .header-nav {
        display: flex !important;
        order: 1;
        flex: 1;
        justify-content: center;
        min-width: 0; /* Flex shrink için */
    }

    .main-menu {
        gap: 10px;
        flex-wrap: wrap;
    }

    .menu-link {
        font-size: 13px;
        padding: 4px 8px;
        white-space: nowrap;
    }

    /* Header actions sağda */
    .header-actions {
        order: 2;
        flex-shrink: 0;
        margin-left: 10px;
        display: flex;
        gap: 8px;
    }

    .search-box {
        width: 160px;
        flex-shrink: 1;
        min-width: 120px;
    }
    
    /* Hamburger tablet boyutunda gizli */
    .hamburger-menu-btn {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 40px;
    }

    .header-content {
        gap: 15px;
        flex-wrap: nowrap; /* Logo kaybolmasın */
        justify-content: space-between;
        align-items: center;
    }

    /* Logo tablet boyutunda görünür - ÖNEMLİ */
    .header-logo {
        display: flex !important;
        flex-shrink: 0 !important;
        min-width: 70px;
        order: 0;
        margin-right: 10px;
    }

    .header-logo img {
        height: 75px;
        max-width: 180px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Navigation görünür */
    .header-nav {
        display: flex !important;
        order: 1;
        flex: 1;
        min-width: 0;
    }

    .main-menu {
        gap: 12px;
        flex-wrap: wrap; /* Menü öğeleri sarılabilir */
    }

    .menu-link {
        font-size: 13px;
        padding: 4px 8px;
    }

    /* Header actions sağda */
    .header-actions {
        order: 2;
        flex-shrink: 0;
        margin-left: 10px;
        display: flex;
        gap: 8px;
    }

    .search-box {
        width: 180px;
        flex-shrink: 1;
        min-width: 120px;
    }

    .products-menu span,
    .search-input {
        font-size: 14px;
    }
    
    /* Hamburger tablet boyutunda gizli */
    .hamburger-menu-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: auto;
        padding: 15px 0;
        top: 40px;
    }
    
    .main-header.scrolled {
        top: 40px;
        height: auto;
    }

    .header-container {
        padding: 0 20px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Logo mobilde görünür */
    .header-logo {
        display: flex !important;
        flex-shrink: 0;
        min-width: 60px;
        order: 0; /* En solda */
    }

    .header-logo img {
        height: 70px;
        max-width: 150px;
    }

    .header-nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .main-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        order: 2;
        gap: 8px;
    }

    .search-box {
        width: 180px;
        height: 44px;
        padding: 8px 5px 8px 10px;
    }

    .search-button {
        width: 32px;
        height: 32px;
        padding: 16px;
    }

    .icon-button {
        width: 44px;
        height: 44px;
    }

    .login-button,
    .user-menu-button {
        height: 44px;
        padding: 0 16px;
        font-size: 14px;
    }

    .user-dropdown-menu {
        right: -10px;
        min-width: 200px;
    }

    .user-dropdown-item {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .top-bar.scrolled {
        min-height: 35px;
    }
    
    .main-header {
        top: 40px;
    }
    
    .main-header.scrolled {
        top: 35px;
    }
    
    .header-logo img {
        height: 60px;
    }

    .products-menu {
        width: 100%;
        justify-content: center;
    }

    .main-menu {
        gap: 10px;
    }

    .menu-link {
        font-size: 13px;
    }

    .menu-link.active {
        height: 36px;
        padding: 4px 10px;
    }

    .search-box {
        width: 150px;
        height: 40px;
    }

    .search-input,
    .products-menu span {
        font-size: 13px;
    }

    .icon-button {
        width: 40px;
        height: 40px;
    }

    .login-button,
    .user-menu-button {
        height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }

    .user-dropdown-menu {
        min-width: 180px;
    }

    .user-dropdown-item {
        font-size: 13px;
        padding: 10px 12px;
        gap: 10px;
    }

    .user-dropdown-item svg {
        width: 16px;
        height: 16px;
    }
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: 96px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.hero-slider-container {
    width: 100%;
    max-width: 100%;
    padding: 0 200px;
    position: relative;
    box-sizing: border-box;
}

/* Slider Title */
.slider-title {
    color: var(--primary);
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    top: -72px;
    left: 0;
    right: 0;
    z-index: 10;
}

/* Slider Background - Sabit Arka Plan */
.slider-background-fixed {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1262px;
    height: 677px;
    background-image: url('assets/images/slider/sliderback.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    box-sizing: border-box;
}

/* Slider Content Wrapper */
.slider-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Slider Content - İçerik Alanı */
.slider-content {
    width: 100%;
    max-width: 1262px;
    height: 677px;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
    overflow: visible;
    margin: 80px auto 0;
    z-index: 2;
}

/* Slider Product Image */
.slider-product {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.slider-product img {
    max-width: 825px;
    max-height: 655px;
    width: 100%;
    height: auto;
    aspect-ratio: 165/131;
    object-fit: contain;
}

.slider-product-img {
    /* Mouse tracking için smooth transition */
    transition: transform 0.2s ease-out;
}

/* Slider Text */
.slider-text {
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 150px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.5px;
    position: absolute;
    white-space: nowrap;
    user-select: none;
}

.slider-text-left {
    left: 28px;
    z-index: 3;
}

.slider-text-right {
    right: 120px;
    z-index: 3;
}

/* Slider Leafs */
.slider-leaf {
    position: absolute;
    z-index: 15;
    animation: floatUpDown 3s ease-in-out infinite;
}

.slider-leaf-left {
    top: 100px;
    left: 150px;
}

.slider-leaf-right {
    bottom: -10px;
    right: 106px;
    animation-delay: 1.5s;
}

/* Float Animation */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Slider Button */
.slider-button {
    display: inline-flex;
    height: 54px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 2px solid var(--white);
    background: var(--primary);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    position: absolute;
    bottom: 159px;
    right: 135px;
    z-index: 20;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slider-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.slider-button svg {
    width: 24px;
    height: 24px;
}

/* Slider Control Buttons */
.slider-controls {
    position: absolute;
    right: 228px;
    top: 300px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}

.slider-control-btn {
    display: flex;
    width: 54px;
    height: 54px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 2px solid var(--primary);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.slider-control-btn:hover svg path {
    fill: var(--white);
}

.slider-control-btn svg {
    width: 24px;
    height: 24px;
}

/* Product Info */
.slider-product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.product-title-box {
    display: inline-flex;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--border-grey);
    background: var(--white);
    max-width: 100%;
    box-sizing: border-box;
}

.product-title {
    color: var(--primary);
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-description {
    color: var(--grey-2);
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    margin: 0;
    padding: 0 20px;
    width: 680px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Hero Slider Mobile Responsive */
@media (max-width: 1400px) {
    .hero-slider {
        margin-top: 80px;
    }

    .hero-slider-container {
        padding: 0 100px;
        box-sizing: border-box;
    }

    .slider-title {
        font-size: 42px;
        top: -60px;
    }

    .slider-background-fixed {
        height: 600px;
        top: 60px;
        max-width: calc(100% - 200px);
    }

    .slider-content {
        height: 600px;
        margin-top: 60px;
    }

    .slider-product img {
        max-width: 700px;
        max-height: 555px;
    }

    .slider-text {
        font-size: 130px;
    }

    .slider-text-left {
        left: 70px;
    }

    .slider-text-right {
        right: 100px;
    }

    .slider-leaf-left {
        top: 40px;
        left: 120px;
        width: 80px;
    }

    .slider-leaf-right {
        bottom: 80px;
        right: 120px;
        width: 80px;
    }

    .slider-button {
        height: 48px;
        padding: 0 20px;
        font-size: 15px;
        bottom: 70px;
        right: 120px;
    }

    .slider-controls {
        right: 100px;
        top: 300px;
    }

    .slider-control-btn {
        width: 48px;
        height: 48px;
    }

    .slider-control-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-product-info {
        max-width: 500px;
    }

    .product-title {
        font-size: 15px;
    }

    .product-description {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        margin-top: 60px;
    }

    .hero-slider-container {
        padding: 0 40px;
        box-sizing: border-box;
    }

    .slider-title {
        font-size: 36px;
        top: -45px;
    }

    .slider-background-fixed {
        height: 500px;
        top: 45px;
        max-width: calc(100% - 80px);
    }

    .slider-content {
        height: 500px;
        margin-top: 45px;
    }

    .slider-product img {
        max-width: 550px;
        max-height: 435px;
    }

    .slider-text {
        font-size: 100px;
    }

    .slider-text-left {
        left: 50px;
    }

    .slider-text-right {
        right: 80px;
    }

    .slider-leaf-left {
        top: 30px;
        left: 80px;
        width: 60px;
    }

    .slider-leaf-right {
        bottom: 60px;
        right: 80px;
        width: 60px;
    }

    .slider-button {
        height: 44px;
        padding: 0 18px;
        font-size: 14px;
        bottom: 60px;
        right: 80px;
    }

    .slider-button svg {
        width: 20px;
        height: 20px;
    }

    .slider-controls {
        right: 50px;
        top: 250px;
    }

    .slider-control-btn {
        width: 44px;
        height: 44px;
    }

    .slider-control-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-product-info {
        max-width: 450px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        margin-top: 80px;
    }

    .hero-slider-container {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .slider-title {
        font-size: 28px;
        top: -35px;
    }

    .slider-background-fixed {
        height: 400px;
        top: 35px;
        max-width: calc(100% - 40px);
    }

    .slider-content {
        height: 400px;
        margin-top: 35px;
        overflow: visible;
    }

    .slider-product {
        transform: translateY(20px);
    }

    .slider-product img {
        max-width: 600px;
        max-height: 480px;
    }

    .slider-item.active .slider-text {
        font-size: 85px;
        position: absolute;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
        display: block;
        color: var(--black);
        text-align: center;
        left: 0;
        right: 0;
        transform: none;
        white-space: nowrap;
    }

    .slider-item.active .slider-text-left {
        top: -10px;
    }

    .slider-item.active .slider-text-right {
        top: 50px;
        bottom: auto;
    }

    .slider-leaf-left {
        top: 20px;
        left: 50px;
        width: 50px;
    }

    .slider-leaf-right {
        bottom: 40px;
        right: 50px;
        width: 50px;
    }

    .slider-button {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
        bottom: 80px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .slider-button svg {
        width: 18px;
        height: 18px;
    }

    .slider-controls {
        right: 25px;
        top: 200px;
    }

    .slider-control-btn {
        width: 40px;
        height: 40px;
    }

    .slider-control-btn svg {
        width: 16px;
        height: 16px;
    }

    .slider-product-info {
        max-width: 100%;
        width: calc(100% - 40px);
        padding: 0 20px;
        box-sizing: border-box;
    }

    .product-title-box {
        height: 36px;
        padding: 8px;
        max-width: 100%;
    }

    .product-title {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .product-description {
        font-size: 13px;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        margin-top: 60px;
    }

    .hero-slider-container {
        box-sizing: border-box;
    }

    .slider-title {
        font-size: 22px;
        top: -25px;
    }

    .slider-background-fixed {
        height: 300px;
        top: 25px;
        max-width: calc(100% - 40px);
    }

    .slider-content {
        height: 300px;
        margin-top: 25px;
        overflow: visible;
    }

    .slider-product {
        transform: translateY(15px);
    }

    .slider-product img {
        max-width: 420px;
        max-height: 335px;
    }

    .slider-item.active .slider-text {
        font-size: 60px;
        position: absolute;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
        display: block;
        color: var(--black);
        text-align: center;
        left: 0;
        right: 0;
        transform: none;
        white-space: nowrap;
    }

    .slider-item.active .slider-text-left {
        top: -5px;
    }

    .slider-item.active .slider-text-right {
        top: 40px;
        bottom: auto;
    }

    .slider-leaf-left {
        top: 15px;
        left: 30px;
        width: 40px;
    }

    .slider-leaf-right {
        bottom: 30px;
        right: 30px;
        width: 40px;
    }

    .slider-button {
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
        bottom: 60px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        gap: 6px;
    }

    .slider-button svg {
        width: 16px;
        height: 16px;
    }

    .slider-controls {
        right: 15px;
        top: 150px;
    }

    .slider-control-btn {
        width: 36px;
        height: 36px;
    }

    .slider-control-btn svg {
        width: 14px;
        height: 14px;
    }

    .slider-product-info {
        max-width: 100%;
        width: calc(100% - 30px);
        padding: 0 15px;
        box-sizing: border-box;
    }

    .product-title-box {
        height: 32px;
        padding: 6px;
        max-width: 100%;
    }

    .product-title {
        font-size: 11px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .product-description {
        font-size: 11px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
}

/* Categories Section */
.categories-section {
    margin-top: 100px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.categories-container {
    width: 100%;
    max-width: 100%;
    padding: 0 200px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.category-box {
    width: 100%;
    max-width: 100%;
    height: 110px;
    border-radius: 30px;
    background: #B89152;
    text-decoration: none;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.category-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
    overflow: visible;
}

.category-title {
    color: var(--white);
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.category-title span {
    display: block;
}

.category-image {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(14deg);
    width: 94px;
    height: 170px;
    z-index: 10;
}

.category-image img {
    width: 94px;
    height: 170px;
    aspect-ratio: 47/85;
    object-fit: contain;
}

/* Categories Mobile Responsive */
@media (max-width: 1600px) {
    .categories-container {
        padding: 0 100px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .category-box {
        width: 100%;
    }

    .category-content {
        padding: 0 20px;
    }

    .category-title {
        font-size: 22px;
    }

    .category-image {
        width: 85px;
        height: 155px;
        right: 15px;
    }

    .category-image img {
        width: 85px;
        height: 155px;
    }
}

@media (max-width: 1500px) {
    .categories-container {
        padding: 0 80px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1400px) {
    .categories-container {
        padding: 0 80px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-title {
        font-size: 20px;
    }

    .category-image {
        width: 80px;
        height: 145px;
    }

    .category-image img {
        width: 80px;
        height: 145px;
    }
}

@media (max-width: 1200px) {
    .categories-section {
        margin-top: 80px;
    }

    .categories-container {
        padding: 0 60px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .category-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .categories-section {
        margin-top: 50px;
    }

    .categories-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .category-box {
        width: 100%;
        min-width: unset;
        max-width: 400px;
        margin: 0 auto;
        height: 100px;
    }

    .category-content {
        padding: 0 25px;
    }

    .category-title {
        font-size: 20px;
    }

    .category-image {
        width: 70px;
        height: 127px;
        right: 15px;
    }

    .category-image img {
        width: 70px;
        height: 127px;
    }
}

@media (max-width: 480px) {
    .categories-section {
        margin-top: 40px;
    }
    
    .categories-container {
        gap: 8px;
    }

    .category-box {
        height: 90px;
    }

    .category-content {
        padding: 0 20px;
    }

    .category-title {
        font-size: 18px;
    }

    .category-image {
        width: 60px;
        height: 109px;
        right: 10px;
    }

    .category-image img {
        width: 60px;
        height: 109px;
    }
}

/* Bestsellers Section */
.bestsellers-section {
    margin-top: 100px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.product-controls {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.product-filters {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.product-filter {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--Grey-2, #848484);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s, border-color 0.2s;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off;
}

.product-filter.active {
    display: flex;
    height: 44px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--Primary, #871302);
    background: rgba(135, 19, 2, 0.20);
    color: var(--Primary, #871302);
}

.product-filter:not(.active):hover {
    color: var(--Primary, #871302);
}

.product-filter:focus-visible,
.product-sort-toggle:focus-visible,
.product-sort-option:focus-visible {
    outline: 2px solid rgba(135, 19, 2, 0.5);
    outline-offset: 2px;
}

.products-header .bestsellers-title {
    margin: 0;
}

.product-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-sort-dropdown {
    position: relative;
}

.product-sort-label {
    color: var(--Black, #1D1D1D);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    line-height: normal;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off;
}

.product-sort-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border: none;
    background: transparent;
    color: var(--Black, #1D1D1D);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    line-height: normal;
    cursor: pointer;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off;
    padding: 0;
    cursor: pointer;
}

.product-sort-current {
    color: var(--Black, #1D1D1D);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    line-height: normal;
}

.product-sort-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 132px;
    min-height: 150px;
    border-radius: 10px;
    border: 1px solid var(--Grey, #E4E4E4);
    background: var(--WHITE-FFFF, #FFF);
    box-shadow: 0 20px 40px 0 #F1F1F1;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.product-sort-dropdown.open .product-sort-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.product-sort-option {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    color: var(--Grey-2, #848484);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: normal;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.product-sort-option.active {
    color: var(--Black, #1D1D1D);
}

.product-sort-option:hover {
    color: var(--Black, #1D1D1D);
    background: rgba(135, 19, 2, 0.08);
}

.products-empty {
    margin-top: 40px;
    text-align: center;
    color: var(--Grey-2, #848484);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.bestsellers-container {
    width: 100%;
    max-width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.bestsellers-title {
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.25px;
    margin: 0 0 40px 0;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    transition: opacity 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.bestsellers-grid.updating {
    opacity: 0;
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-card-hidden {
    opacity: 0;
    transform: translateY(24px);
}

.product-image-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 30px;
    background: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.product-image {
    width: 258px;
    height: 280px;
    aspect-ratio: 129/140;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.favorite-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 26.66px;
    height: 23.65px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    z-index: 10;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn svg {
    width: 26.66px;
    height: 23.65px;
}

/* Product Info */
.product-info {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 10px;
}

.product-name {
    color: var(--primary);
    text-align: right;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    flex: 1;
    min-width: 0;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price-old {
    color: var(--grey-2);
    text-align: right;
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: line-through;
}

.product-price {
    color: var(--primary);
    text-align: right;
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.15px;
}

.product-weight {
    color: var(--grey-2);
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 18px;
    align-items: center;
}

.product-btn-view {
    display: flex;
    height: 54px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1;
    border-radius: 30px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    text-align: right;
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.product-btn-cart {
    display: flex;
    width: 54px;
    height: 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.product-btn-cart:hover svg path {
    stroke: var(--white);
}

.product-btn-cart svg {
    width: 24px;
    height: 24px;
}

/* Bestsellers Responsive */
@media (max-width: 1600px) {
    .bestsellers-container {
        padding: 0 100px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .product-image-box {
        width: 100%;
    }

    .product-image {
        width: 220px;
        height: 238px;
    }
}

@media (max-width: 1500px) {
    .bestsellers-container {
        padding: 0 80px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1300px) {
    .bestsellers-container {
        padding: 0 60px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }
}

@media (max-width: 1400px) {
    .bestsellers-container {
        padding: 0 80px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .product-image-box {
        width: 100%;
    }

    .bestsellers-title {
        font-size: 32px;
    }

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

@media (max-width: 1200px) {
    .bestsellers-section {
        margin-top: 80px;
    }

    .bestsellers-container {
        padding: 0 60px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }

    .product-image-box {
        width: 100%;
    }

    .product-image {
        width: 240px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .bestsellers-section {
        margin-top: 60px;
    }

    .bestsellers-container {
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .bestsellers-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }

    .product-image-box {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        height: auto;
        margin: 0;
    }

    .product-card {
        max-width: 100%;
        margin: 0;
    }

    .product-image {
        width: 220px;
        height: 238px;
    }

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

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

    .product-weight {
        font-size: 15px;
    }

    .product-btn-view {
        font-size: 15px;
        height: 48px;
    }

    .product-btn-cart {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .bestsellers-section {
        margin-top: 50px;
    }

    .bestsellers-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image-box {
        height: auto;
    }

    .product-info {
        margin-top: 15px;
        gap: 12px;
    }

    .product-image {
        width: 100%;
        height: auto;
        max-width: 160px;
        max-height: 170px;
    }

    .favorite-btn {
        top: 10px;
        right: 10px;
        width: 20px;
        height: 18px;
    }

    .favorite-btn svg {
        width: 20px;
        height: 18px;
    }

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

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

    .product-price-old {
        font-size: 10px;
    }
    
    .product-weight {
        font-size: 11px;
    }
    
    .product-btn-view {
        font-size: 12px;
        padding: 8px 12px;
        height: auto;
    }
    
    .product-btn-cart {
        width: 36px;
        height: 36px;
    }
    
    .product-btn-cart svg {
        width: 18px;
        height: 18px;
    }

    .product-weight {
        font-size: 14px;
    }

    .product-btn-view {
        font-size: 14px;
        height: 44px;
        padding: 10px;
    }

    .product-btn-cart {
        width: 44px;
        height: 44px;
    }

    .product-btn-cart svg {
        width: 20px;
        height: 20px;
    }
}

/* Campaign Section */
.campaign-section {
    margin-top: 100px;
    position: relative;
}

.campaign-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.campaign-container {
    width: 100%;
    max-width: 100%;
    padding: 0 200px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.campaign-box {
    width: 100%;
    max-width: 1520px;
    height: 648px;
    background-image: url('assets/images/reklam.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 24px;
    gap: 40px;
    overflow: hidden;
}

.campaign-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-image img {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.campaign-content {
    display: flex;
    width: 490px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.campaign-title {
    color: var(--primary);
    text-align: center;
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.campaign-text {
    color: var(--primary);
    text-align: center;
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    margin: 0;
}

.campaign-btn {
    display: flex;
    height: 54px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 2px solid var(--white);
    background: var(--primary);
    color: var(--white);
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Campaign Responsive */
@media (max-width: 1600px) {
    .campaign-container {
        padding: 0 100px;
        box-sizing: border-box;
    }

    .campaign-box {
        width: 100%;
        max-width: 1400px;
        height: 580px;
    }

    .campaign-title {
        font-size: 42px;
    }

    .campaign-content {
        width: 450px;
    }

    .campaign-image img {
        max-height: 530px;
    }
}

@media (max-width: 1400px) {
    .campaign-container {
        padding: 0 80px;
        box-sizing: border-box;
    }

    .campaign-box {
        height: 520px;
    }

    .campaign-title {
        font-size: 38px;
    }

    .campaign-content {
        width: 400px;
        gap: 20px;
    }

    .campaign-text {
        font-size: 15px;
    }

    .campaign-image img {
        max-height: 470px;
    }
}

@media (max-width: 1200px) {
    .campaign-section {
        margin-top: 80px;
    }

    .campaign-container {
        padding: 0 60px;
        box-sizing: border-box;
    }

    .campaign-box {
        height: 480px;
        gap: 30px;
        padding: 20px;
    }

    .campaign-title {
        font-size: 34px;
    }

    .campaign-content {
        width: 360px;
    }

    .campaign-image img {
        max-height: 440px;
    }

    .campaign-btn {
        height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .campaign-box {
        flex-direction: column;
        height: auto;
        padding: 40px 30px;
        gap: 30px;
    }

    .campaign-content {
        width: 100%;
        max-width: 500px;
    }

    .campaign-image img {
        max-height: 350px;
        max-width: 80%;
    }

    .campaign-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .campaign-section {
        margin-top: 60px;
    }

    .campaign-container {
        padding: 0 20px;
    }

    .campaign-box {
        padding: 30px 20px;
        gap: 25px;
    }

    .campaign-title {
        font-size: 28px;
    }

    .campaign-text {
        font-size: 14px;
    }

    .campaign-content {
        max-width: 400px;
        gap: 18px;
    }

    .campaign-image img {
        max-height: 280px;
        max-width: 90%;
    }

    .campaign-btn {
        height: 44px;
        padding: 0 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .campaign-section {
        margin-top: 50px;
    }

    .campaign-box {
        padding: 25px 15px;
        gap: 20px;
    }

    .campaign-title {
        font-size: 24px;
    }

    .campaign-text {
        font-size: 13px;
    }

    .campaign-content {
        gap: 16px;
    }

    .campaign-image img {
        max-height: 220px;
    }

    .campaign-btn {
        height: 40px;
        padding: 0 18px;
        font-size: 13px;
    }
}

/* Blog Section */
.blog-section {
    margin-top: 100px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.blog-container {
    width: 100%;
    max-width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.blog-section-title {
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.25px;
    margin: 0;
}

.blog-view-all-btn {
    display: flex;
    width: 191px;
    height: 54px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-view-all-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.blog-image {
    height: 450px;
    align-self: stretch;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.blog-title {
    display: flex;
    height: 49px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.25px;
    margin: 0;
}

.blog-excerpt {
    color: var(--grey-2);
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    margin: 0;
}

.blog-read-more {
    display: flex;
    height: 44px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    text-align: right;
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    background: var(--primary);
    color: var(--white);
}

/* Blog Responsive */
@media (max-width: 1600px) {
    .blog-container {
        padding: 0 100px;
        box-sizing: border-box;
    }

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

    .blog-image {
        height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }
}

@media (max-width: 1400px) {
    .blog-container {
        padding: 0 80px;
        box-sizing: border-box;
    }

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

    .blog-section-title {
        font-size: 32px;
    }

    .blog-image {
        height: 380px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-excerpt {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .blog-section {
        margin-top: 80px;
    }

    .blog-container {
        padding: 0 60px;
        box-sizing: border-box;
    }

    .blog-header {
        margin-bottom: 35px;
    }

    .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }

    .blog-image {
        height: 350px;
    }

    .blog-title {
        font-size: 26px;
    }

    .blog-view-all-btn {
        width: 170px;
        height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .blog-card:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .blog-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        margin-top: 60px;
    }

    .blog-container {
        padding: 0 20px;
    }

    .blog-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .blog-section-title {
        font-size: 28px;
    }

    .blog-view-all-btn {
        width: 100%;
        max-width: 250px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .blog-image {
        height: 320px;
    }

    .blog-title {
        font-size: 24px;
        height: auto;
    }

    .blog-excerpt {
        font-size: 14px;
    }

    .blog-content {
        gap: 20px;
        margin-top: 20px;
    }

    .blog-read-more {
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        margin-top: 50px;
    }

    .blog-header {
        gap: 15px;
        margin-bottom: 25px;
    }

    .blog-section-title {
        font-size: 24px;
    }

    .blog-view-all-btn {
        height: 44px;
        font-size: 14px;
    }

    .blog-grid {
        gap: 35px;
    }

    .blog-image {
        height: 280px;
    }

    .blog-title {
        font-size: 22px;
    }

    .blog-excerpt {
        font-size: 13px;
    }

    .blog-content {
        gap: 18px;
    }

    .blog-read-more {
        height: 38px;
        font-size: 14px;
        padding: 10px;
    }
}

/* Features Section */
.features-section {
    margin-top: 120px;
    position: relative;
}

.features-container {
    width: 100%;
    padding: 0 200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.feature-icon {
    max-width: 123.932px;
    max-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    max-width: 123.932px;
    max-height: 80px;
    width: 100%;
    height: auto;
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.feature-text-bold {
    color: var(--black);
    text-align: center;
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.feature-text-normal {
    color: var(--black);
    text-align: center;
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* Features Responsive */
@media (max-width: 1600px) {
    .features-container {
        padding: 0 100px;
        gap: 60px;
    }

    .feature-text-bold,
    .feature-text-normal {
        font-size: 22px;
    }

    .feature-icon {
        max-width: 110px;
        max-height: 72px;
    }

    .feature-icon svg {
        max-width: 110px;
        max-height: 72px;
    }
}

@media (max-width: 1400px) {
    .features-section {
        margin-top: 100px;
    }

    .features-container {
        padding: 0 80px;
        gap: 50px;
    }

    .feature-text-bold,
    .feature-text-normal {
        font-size: 20px;
    }

    .feature-icon {
        max-width: 100px;
        max-height: 65px;
    }

    .feature-icon svg {
        max-width: 100px;
        max-height: 65px;
    }
}

@media (max-width: 1200px) {
    .features-section {
        margin-top: 80px;
    }

    .features-container {
        padding: 0 60px;
        gap: 40px;
    }

    .feature-item {
        gap: 20px;
    }

    .feature-text-bold,
    .feature-text-normal {
        font-size: 18px;
    }

    .feature-icon {
        max-width: 90px;
        max-height: 58px;
    }

    .feature-icon svg {
        max-width: 90px;
        max-height: 58px;
    }
}

@media (max-width: 1024px) {
    .features-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px 40px;
    }

    .feature-item {
        flex: 0 0 calc(33.333% - 27px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .features-section {
        margin-top: 60px;
    }

    .features-container {
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        justify-content: center;
    }

    .feature-item {
        width: 100%;
        max-width: 100%;
        gap: 18px;
    }

    .feature-text-bold,
    .feature-text-normal {
        font-size: 18px;
    }

    .feature-icon {
        max-width: 90px;
        max-height: 58px;
    }

    .feature-icon svg {
        max-width: 90px;
        max-height: 58px;
    }
}

@media (max-width: 480px) {
    .features-section {
        margin-top: 50px;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-text-bold,
    .feature-text-normal {
        font-size: 16px;
    }

    .feature-icon {
        max-width: 80px;
        max-height: 52px;
    }

    .feature-icon svg {
        max-width: 80px;
        max-height: 52px;
    }
}


/* Footer Section */
.footer-section {
    margin-top: 120px;
    margin-bottom: 40px;
    position: relative;
}

.footer-container {
    width: 100%;
    padding: 0 200px;
    display: flex;
    justify-content: center;
}

.footer-main {
    width: 1720px;
    height: 600px;
    border-radius: 30px;
    border: 1px solid #EFEFEF;
    background: var(--white);
    box-shadow: 0 20px 40px 0 #F1F1F1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
}

.footer-left {
    max-width: 600px;
}

.footer-logo {
    width: 219.02px;
    height: 109.053px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-description {
    color: var(--grey-2);
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    margin: 0 0 24px 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-item {
    color: var(--grey-2);
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 90px;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-column-title {
    color: var(--black);
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu li a {
    color: var(--black);
    font-feature-settings: 'liga' off;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--primary);
}

.footer-legal-menu,
.footer-products-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.footer-legal-menu li,
.footer-products-menu li {
    display: inline-block;
}

.footer-legal-menu li a,
.footer-products-menu li a {
    white-space: nowrap;
    font-size: 18px;
}

.footer-divider {
    background: #E4E4E4;
    width: 100%;
    max-width: 1520px;
    height: 1px;
    margin: 40px auto 30px auto;
}

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

.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-payment-logos img {
    max-width: 99.892px;
    max-height: 24px;
    object-fit: contain;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-dealer-btn {
    display: flex;
    height: 44px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--black);
    background: transparent;
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-dealer-btn:hover {
    background: var(--black);
    color: var(--white);
}

.footer-right-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-copyright {
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer-bottom-logo {
    max-width: 80px;
    max-height: 30px;
    object-fit: contain;
}

@media (max-width: 1800px) {
    .footer-container { padding: 0 100px; }
    .footer-main { width: 100%; max-width: 1600px; }
}

@media (max-width: 1600px) {
    .footer-main { padding: 50px 60px; height: auto; }
    .footer-right { gap: 60px; }
    .footer-divider { max-width: 100%; }
}

@media (max-width: 1400px) {
    .footer-container { padding: 0 80px; }
    .footer-main { padding: 40px 50px; }
    .footer-logo { width: 180px; height: 90px; }
    .footer-description, .footer-contact-item { font-size: 15px; }
    .footer-menu li a, .footer-column-title { font-size: 18px; }
    .footer-right { gap: 50px; }
}

@media (max-width: 1200px) {
    .footer-section { margin-top: 100px; margin-bottom: 40px; }
    .footer-container { padding: 0 60px; }
    .footer-main { gap: 40px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-right { gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 30px; align-items: flex-start; }
    .footer-payment-logos { flex-wrap: wrap; gap: 15px; }
}

@media (max-width: 1024px) {
    .footer-main { padding: 35px 40px; }
    .footer-right { flex-direction: column; gap: 30px; }
    .footer-column { width: 100%; }
    .footer-center { flex-direction: column; align-items: flex-start; gap: 15px; }
    .footer-dealer-btn { width: 100%; max-width: 200px; }
}

@media (max-width: 768px) {
    .footer-section { margin-top: 80px; margin-bottom: 30px; }
    .footer-container { padding: 0 20px; }
    .footer-main { 
        padding: 30px 25px; 
        text-align: center;
        align-items: center;
    }
    .footer-top {
        align-items: center;
    }
    .footer-left { 
        max-width: 100%;
        align-items: center;
    }
    .footer-logo { width: 160px; height: 80px; }
    .footer-description, .footer-contact-item { font-size: 14px; }
    .footer-menu li a, .footer-column-title { font-size: 16px; }
    .footer-menu {
        align-items: center;
    }
    .footer-legal-menu,
    .footer-products-menu {
        justify-content: center;
        gap: 12px 16px;
    }
    .footer-legal-menu li a,
    .footer-products-menu li a {
        font-size: 14px;
    }
    .footer-bottom { 
        gap: 25px;
        align-items: center;
    }
    .footer-center {
        align-items: center;
    }
    .footer-payment-logos { gap: 10px; justify-content: center; }
    .footer-payment-logos img { max-width: 70px; max-height: 20px; }
    .footer-socials { gap: 10px; justify-content: center; }
    .footer-social-icon { width: 36px; height: 36px; }
    .footer-dealer-btn { font-size: 15px; height: 40px; }
    .footer-copyright { font-size: 13px; text-align: center; }
}

@media (max-width: 480px) {
    .footer-section { margin-top: 60px; margin-bottom: 30px; }
    .footer-main { 
        padding: 25px 20px;
        text-align: center;
    }
    .footer-logo { width: 140px; height: 70px; margin: 0 auto 20px auto; }
    .footer-description { margin-bottom: 20px; }
    .footer-contact { gap: 20px; }
    .footer-description, .footer-contact-item { font-size: 13px; }
    .footer-menu li a, .footer-column-title { font-size: 15px; }
    .footer-column { gap: 20px; align-items: center; }
    .footer-menu { gap: 14px; align-items: center; }
    .footer-legal-menu,
    .footer-products-menu {
        justify-content: center;
        gap: 10px 12px;
    }
    .footer-legal-menu li a,
    .footer-products-menu li a {
        font-size: 13px;
    }
    .footer-divider { margin: 30px auto 25px auto; }
    .footer-bottom { gap: 20px; align-items: center; }
    .footer-payment-logos { gap: 8px; justify-content: center; }
    .footer-payment-logos img { max-width: 60px; max-height: 18px; }
    .footer-dealer-btn { font-size: 14px; height: 38px; padding: 10px; }
    .footer-copyright { font-size: 12px; text-align: center; }
    .footer-bottom-logo { max-width: 60px; max-height: 25px; }
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for child elements */
.bestsellers-grid .product-card,
.blog-grid .blog-card,
.features-grid .feature-item,
.categories-grid .category-box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in .product-card,
.animate-in .blog-card,
.animate-in .feature-item,
.animate-in .category-box {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for each child */
.animate-in .product-card:nth-child(1),
.animate-in .blog-card:nth-child(1),
.animate-in .feature-item:nth-child(1),
.animate-in .category-box:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-in .product-card:nth-child(2),
.animate-in .blog-card:nth-child(2),
.animate-in .feature-item:nth-child(2),
.animate-in .category-box:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-in .product-card:nth-child(3),
.animate-in .blog-card:nth-child(3),
.animate-in .feature-item:nth-child(3),
.animate-in .category-box:nth-child(3) {
    transition-delay: 0.3s;
}

.animate-in .product-card:nth-child(4),
.animate-in .blog-card:nth-child(4),
.animate-in .feature-item:nth-child(4),
.animate-in .category-box:nth-child(4) {
    transition-delay: 0.4s;
}

.animate-in .feature-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .product-card,
    .blog-card,
    .feature-item,
    .category-box {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==================== CART BADGE ==================== */
.cart-button {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #871302;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ==================== CART DROPDOWN ==================== */
.cart-menu-wrapper {
    position: relative;
}

.cart-dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    width: 360px;
    max-height: 420px;
    background: #FFFFFF;
    box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.18);
    border-radius: 24px;
    padding: 16px 0 12px 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}

.cart-dropdown-menu.show {
    display: flex;
}

.cart-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 8px 20px;
    border-bottom: 1px solid #E4E4E4;
}

.cart-dropdown-title {
    color: var(--black);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 600;
}

.cart-dropdown-count {
    color: var(--grey-2);
    font-family: "Plus Jakarta Sans";
    font-size: 13px;
    font-weight: 500;
}

.cart-dropdown-items {
    max-height: 260px;
    overflow-y: auto;
    padding: 8px 12px 4px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px;
    border-radius: 16px;
    background: #F9F9F9;
}

.cart-dropdown-item-image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-dropdown-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-dropdown-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.cart-dropdown-item-name {
    color: var(--black);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 600;
}

.cart-dropdown-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    color: var(--grey-2);
    font-size: 12px;
    font-family: "Plus Jakarta Sans";
}

.cart-dropdown-item-price {
    color: var(--black);
    font-weight: 600;
}

.cart-dropdown-remove {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.cart-dropdown-remove:hover {
    background: var(--primary);
    color: #fff;
}

.cart-dropdown-meta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.cart-dropdown-empty {
    text-align: center;
    color: var(--grey-2);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    padding: 16px 8px;
}

.cart-dropdown-footer {
    padding: 8px 20px 0 20px;
    border-top: 1px solid #E4E4E4;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-dropdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
}

.cart-dropdown-total span:first-child {
    color: var(--grey-2);
}

.cart-dropdown-total span:last-child {
    color: var(--black);
    font-weight: 600;
}

.cart-dropdown-button {
    margin-top: 4px;
    display: flex;
    height: 44px;
    border-radius: 30px;
    background: var(--primary);
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.cart-dropdown-button:hover {
    background: #6b0f01;
}

/* ==================== TOAST NOTIFICATION ==================== */
.cart-toast-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 20px 28px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10000;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 2.6s;
    min-width: 320px;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.cart-toast-notification.success {
    border: 2px solid #4caf50;
}

.cart-toast-notification.error {
    border: 2px solid #f44336;
}

.cart-toast-notification .toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-toast-notification.success .toast-icon {
    background: #4caf50;
}

.cart-toast-notification.error .toast-icon {
    background: #f44336;
}

.cart-toast-notification .toast-icon svg {
    width: 24px;
    height: 24px;
}

.cart-toast-notification .toast-message {
    color: var(--black);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.15px;
}

/* Responsive Toast */
@media (max-width: 768px) {
    .cart-toast-notification {
        top: 20px;
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: calc(100% - 30px);
    }
}

/* ==================== CART PAGE ==================== */
.cart-page {
    padding: 40px 200px;
}

.cart-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.cart-steps-section {
    width: 1005px;
    min-height: 710px;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 30px;
border: 1px solid #EFEFEF;
background: var(--White, #FFF);
box-shadow: 0 12px 24px -2px rgba(89, 74, 60, 0.12);
}

@media (max-width: 1024px) {
    .cart-page {
        padding: 24px 16px;
    }
    .cart-container {
        flex-direction: column;
        align-items: stretch;
    }
    .cart-steps-section {
        width: 100%;
        min-height: auto;
        padding: 24px 20px;
    }
    .cart-summary-section {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-page {
        padding: 16px 8px;
    }
    .cart-steps-section {
        padding: 20px 15px !important;
        box-shadow: none;
        width: 100%;
    }
    .cart-container {
        gap: 16px;
        flex-direction: column;
        align-items: stretch;
    }
    .cart-summary-section {
        width: 100%;
    }
    
    /* Header ve adımları mobilde yeniden düzenle */
    .cart-steps-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cart-steps-header > div {
        text-align: left;
        width: 100%;
    }
    
    .cart-title {
        font-size: 22px;
        text-align: left;
    }
    
    .cart-subtitle {
        font-size: 13px;
        text-align: left;
    }
    
    .cart-steps-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }
    
    .cart-step-tab {
        height: 32px;
        padding: 6px 4px;
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 20px;
    }
    
    .cart-header-divider {
        margin-top: 10px;
    }

    /* Sepet satırları - mobilde daha kompakt ve taşıma yapmadan göster */
    .cart-row {
        padding: 10px 0 !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
    .cart-row-image {
        width: 130px !important;
        height: 130px !important;
        border-radius: 15px !important;
        flex-shrink: 0 !important;
    }
    .cart-row-info {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }
    .cart-row-name {
        font-size: 16px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        max-width: 100% !important;
        line-height: 1.3 !important;
    }
    .cart-row-weight {
        font-size: 13px !important;
    }
    .cart-row-price-main {
        font-size: 18px !important;
    }
    .cart-row-price-old {
        font-size: 14px !important;
    }
    .cart-row-qty {
        padding: 6px 12px !important;
        flex-shrink: 0 !important;
        border-radius: 25px !important;
    }
    .cart-qty-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 16px !important;
    }
    .cart-qty-value {
        font-size: 15px !important;
        min-width: 25px !important;
        text-align: center !important;
    }
    
    .cart-row-price-block {
        flex-shrink: 0 !important;
        align-items: flex-end !important;
    }
    
    .cart-row-actions {
        gap: 8px !important;
        flex-shrink: 0 !important;
    }
    
    .cart-row-action {
        width: 45px !important;
        height: 45px !important;
        font-size: 14px !important;
    }
    
    .cart-row-actions button {
        font-size: 14px !important;
        padding: 6px 10px !important;
    }
    
    .checkout-step-content {
        padding: 15px 10px !important;
    }
    
    /* Ödeme ve Teslimat Adımları Mobil */
    .address-selection-section,
    .payment-method-section,
    .order-summary-section {
        width: 100% !important;
        padding: 15px 10px !important;
    }
    
    .section-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    /* Adres kartları mobil */
    .address-card,
    .checkout-address-item {
        padding: 12px !important;
        margin-bottom: 10px !important;
        border-radius: 15px !important;
    }
    
    /* Ödeme yöntemleri mobil */
    .payment-tabs,
    .payment-method-tabs {
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    
    .payment-tab,
    .payment-method-tab {
        font-size: 13px !important;
        padding: 8px 12px !important;
        flex: 1 !important;
        min-width: auto !important;
    }
    
    /* Ödeme form alanları */
    .payment-form-group,
    .form-group {
        margin-bottom: 12px !important;
    }
    
    .payment-input,
    .form-input {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
    
    /* Butonlar */
    .checkout-button,
    .payment-button,
    .next-step-button {
        width: 100% !important;
        padding: 12px !important;
        font-size: 15px !important;
        margin-top: 15px !important;
    }
    
    /* Ödeme içerikleri için genel wrapper */
    .payment-content,
    .address-content,
    .step-content-wrapper {
        width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    
    /* Formlar */
    .checkout-form,
    .payment-form,
    .address-form {
        width: 100% !important;
        padding: 15px 10px !important;
    }
    
    /* Label'lar */
    label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    
    /* Checkbox ve Radio */
    .checkbox-wrapper,
    .radio-wrapper {
        padding: 10px !important;
    }
    
    /* Adres bölümleri */
    .address-section,
    .checkout-delivery-section {
        padding: 15px 10px !important;
        margin-bottom: 15px !important;
    }
    
    .address-section-title,
    .section-header-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    .address-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .address-item {
        padding: 12px !important;
        font-size: 13px !important;
    }
    
    .address-title {
        font-size: 14px !important;
    }
    
    .address-text {
        font-size: 13px !important;
    }
    
    .add-address-btn {
        width: 100% !important;
        padding: 10px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .cart-page {
        padding: 10px 4px;
    }
    
    .cart-steps-section {
        padding: 15px 10px !important;
        border-radius: 15px;
    }
    
    .cart-title {
        font-size: 20px;
        text-align: left;
    }
    
    .cart-subtitle {
        font-size: 12px;
        text-align: left;
    }
    
    .cart-steps-tabs {
        grid-template-columns: repeat(4, 1fr);
        gap: 3px;
    }
    
    .cart-step-tab {
        height: 30px;
        padding: 5px 4px;
        font-size: 9px;
        border-radius: 15px;
    }
    
    .cart-row {
        padding: 8px 0 !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
    }
    
    .cart-row-image {
        width: 130px !important;
        height: 130px !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important;
    }
    
    .cart-row-info {
        gap: 3px !important;
    }
    
    .cart-row-name {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }
    
    .cart-row-weight {
        font-size: 12px !important;
    }
    
    .cart-row-price-main {
        font-size: 17px !important;
    }
    
    .cart-row-price-old {
        font-size: 13px !important;
    }
    
    .cart-row-qty {
        padding: 5px 10px !important;
        flex-shrink: 0 !important;
        border-radius: 20px !important;
    }
    
    .cart-qty-btn {
        width: 20px !important;
        height: 20px !important;
        font-size: 15px !important;
    }
    
    .cart-qty-value {
        font-size: 14px !important;
        min-width: 22px !important;
        text-align: center !important;
    }
    
    .cart-row-price-block {
        flex-shrink: 0 !important;
        align-items: flex-end !important;
    }
    
    .cart-summary-card {
        padding: 15px 10px;
        border-radius: 15px;
    }
    
    .cart-summary-title {
        font-size: 18px;
    }
    
    .cart-summary-main-button {
        height: 42px;
        font-size: 13px;
    }
    
    .cart-header-divider {
        margin-top: 8px;
    }
    
    .cart-row-actions {
        gap: 6px !important;
        flex-shrink: 0 !important;
    }
    
    .cart-row-action {
        width: 40px !important;
        height: 40px !important;
        font-size: 13px !important;
    }
    
    .cart-row-actions button {
        font-size: 13px !important;
        padding: 5px 8px !important;
    }
    
    .checkout-step-content {
        padding: 12px 8px !important;
    }
    
    /* Ödeme ve Teslimat Adımları Mobil */
    .address-selection-section,
    .payment-method-section,
    .order-summary-section {
        width: 100% !important;
        padding: 12px 8px !important;
    }
    
    .section-title {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    /* Adres kartları mobil */
    .address-card,
    .checkout-address-item {
        padding: 10px !important;
        margin-bottom: 8px !important;
        border-radius: 12px !important;
        font-size: 13px !important;
    }
    
    /* Ödeme yöntemleri mobil */
    .payment-tabs,
    .payment-method-tabs {
        gap: 6px !important;
        flex-wrap: wrap !important;
    }
    
    .payment-tab,
    .payment-method-tab {
        font-size: 12px !important;
        padding: 7px 10px !important;
        flex: 1 !important;
        min-width: auto !important;
    }
    
    /* Ödeme form alanları */
    .payment-form-group,
    .form-group {
        margin-bottom: 10px !important;
    }
    
    .payment-input,
    .form-input {
        padding: 9px 10px !important;
        font-size: 13px !important;
    }
    
    /* Kredi kartı form */
    .card-number-input,
    .card-expiry-input,
    .card-cvv-input {
        font-size: 13px !important;
        padding: 9px 10px !important;
    }
    
    /* Butonlar */
    .checkout-button,
    .payment-button,
    .next-step-button {
        width: 100% !important;
        padding: 11px !important;
        font-size: 14px !important;
        margin-top: 12px !important;
    }
    
    /* Ödeme içerikleri için genel wrapper */
    .payment-content,
    .address-content,
    .step-content-wrapper {
        width: 100% !important;
        padding: 0 8px !important;
        box-sizing: border-box !important;
    }
    
    /* Formlar */
    .checkout-form,
    .payment-form,
    .address-form {
        width: 100% !important;
        padding: 12px 8px !important;
    }
    
    /* Label'lar */
    label {
        font-size: 12px !important;
        margin-bottom: 5px !important;
    }
    
    /* Checkbox ve Radio */
    .checkbox-wrapper,
    .radio-wrapper {
        padding: 8px !important;
    }
    
    /* Banka kartları ve ödeme seçenekleri */
    .bank-list,
    .payment-options {
        gap: 8px !important;
    }
    
    .bank-item,
    .payment-option-card {
        padding: 10px !important;
        font-size: 12px !important;
    }
    
    /* Adres bölümleri */
    .address-section,
    .checkout-delivery-section {
        padding: 12px 8px !important;
        margin-bottom: 12px !important;
    }
    
    .address-section-title,
    .section-header-title {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    .address-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .address-item {
        padding: 10px !important;
        font-size: 12px !important;
    }
    
    .address-title {
        font-size: 13px !important;
    }
    
    .address-text {
        font-size: 12px !important;
    }
    
    .add-address-btn {
        width: 100% !important;
        padding: 9px !important;
        font-size: 13px !important;
    }
}

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

.cart-title {
    color: var(--primary);
    font-family: "Plus Jakarta Sans";
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.cart-subtitle {
    color: var(--grey-2);
    font-feature-settings: 'liga' off;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    margin-top: 4px;
}

.cart-header-divider {
    width: 100%;
    height: 1px;
    background: #E4E4E4;
    margin-top: 16px;
}

.cart-steps-tabs {
    display: flex;
    gap: 8px;
}

.cart-step-tab {
    display: flex;
    height: 44px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: none;
    background: transparent;
    color: var(--grey-2);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    cursor: default;
}

.cart-step-tab-active {
    border-radius: 30px;
    border: 1px solid var(--primary);
    background: rgba(135, 19, 2, 0.20);
    color: var(--primary);
}

.cart-step-tab-disabled {
    opacity: 0.6;
}

.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 12px;
}

.cart-row {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #F0F0F0;
    align-items: center;
}

.cart-row-image {
    width: 233px;
    height: 233px;
    border-radius: 24px;
    overflow: hidden;
    background: #F6F6F6;
    flex-shrink: 0;
}

.cart-row-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.cart-row-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-row-title-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.cart-row-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-row-name {
    color: var(--primary);
    font-family: "Plus Jakarta Sans";
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.cart-row-weight {
    color: var(--black);
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.15px;
}

.cart-row-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.cart-row-actions {
    display: flex;
    gap: 12px;
}

.cart-row-action {
    display: flex;
    width: 54px;
    height: 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    background: var(--white);
    cursor: pointer;
}

.cart-row-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.cart-row-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cart-row-price-main {
    color: var(--primary);
    text-align: right;
    font-family: "Plus Jakarta Sans";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.25px;
}

.cart-row-price-old {
    color: var(--grey-2);
    text-decoration: line-through;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 500;
}

.cart-row-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F6F6F6;
    border-radius: 30px;
    padding: 8px 16px;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.cart-qty-value {
    color: var(--black);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 500;
}

.cart-row-price {
    color: var(--black);
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-weight: 600;
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-empty p {
    color: var(--grey-2);
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
}

.cart-empty-button {
    align-self: center;
    margin-top: 8px;
    display: inline-flex;
    padding: 10px 32px;
    border-radius: 30px;
    background: var(--primary);
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    font-weight: 600;
}

.cart-summary-section {
    flex: 1;
}

.cart-summary-card {
    width: 100%;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 24px 24px 20px 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-radius: 30px;
border: 1px solid #EFEFEF;
background: var(--White, #FFF);
box-shadow: 0 12px 24px -2px rgba(89, 74, 60, 0.12);
}

.cart-summary-title {
    color: var(--primary);
    font-family: "Plus Jakarta Sans";
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    margin-bottom: 8px;
}

.cart-summary-row span:first-child {
    color: var(--grey-2);
}

.cart-summary-row span:last-child {
    color: var(--black);
}

.cart-summary-divider {
    border-top: 1px solid #E4E4E4;
    margin: 12px 0;
}

.cart-summary-total-row {
    align-items: flex-start;
    margin-bottom: 16px;
}

.cart-summary-total-label {
    display: block;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
}

.cart-summary-total-sub {
    display: block;
    color: var(--grey-2);
    font-size: 12px;
    margin-top: 2px;
}

.cart-summary-total-value {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
}

.cart-summary-points {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 18px;
    background: #FFF7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cart-summary-points-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-summary-points-title {
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
}

.cart-summary-points-info {
    color: var(--grey-2);
    font-size: 11px;
}

.cart-summary-points-button {
    border-radius: 30px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.cart-summary-main-button {
    margin-top: 14px;
    width: 100%;
    height: 46px;
    border-radius: 30px;
    border: none;
    background: var(--primary);
    color: #FFFFFF;
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.cart-summary-payment-logos {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: var(--grey-2);
}

/* (Teslimat adımı adres stilleri şimdilik kaldırıldı) */

/* Kupon Kodu Kullan */
.cart-summary-coupon {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-coupon-toggle {
    display: flex;
    height: 54px;
    padding: 0 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 60px;
    border: 2px solid var(--Grey, #E4E4E4);
    background: #FFF;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-2);
    cursor: pointer;
}

.cart-coupon-form {
    display: flex;
    height: 54px;
    padding: 0 4px 0 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 60px;
    border: 2px solid var(--Grey, #E4E4E4);
    background: #FFF;
    gap: 8px;
}

.cart-coupon-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.cart-coupon-input::placeholder {
    color: var(--grey-2);
}

.cart-coupon-apply {
    display: flex;
    padding: 0 20px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: #FFF;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ============================= */
/* MOBILE RESPONSIVE STYLES */
/* ============================= */

/* Hamburger Menu Button */
.hamburger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary);
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-logo {
    height: 40px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Mobile Search */
.mobile-search-box {
    position: relative;
    width: 100%;
}

.mobile-search-input {
    width: 100%;
    height: 48px;
    padding: 12px 45px 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-search-box svg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-search-box svg path {
    fill: white;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link.active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(135, 19, 2, 0.10);
    border-left: 3px solid var(--primary);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

/* Mobile Contact */
.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-contact-phone {
    color: white;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar-container {
        padding: 0 20px;
    }
    
    .top-bar-content {
        flex-direction: row;
        gap: 10px;
    }
    
    .top-bar-message {
        position: relative;
        left: 0;
        transform: none;
        font-size: 12px;
    }
    
    .top-bar-right {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-left: 0;
    }
    
    .top-bar-phone {
        font-size: 12px;
    }
    
    .top-bar-socials {
        gap: 8px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    /* Header Mobile */
    .header-container {
        padding: 0 20px;
    }
    
    .header-content {
        justify-content: flex-start;
        gap: 12px;
    }
    
    /* Logo - EN SOLDA */
    .header-logo {
        order: 0;
        flex: 0 0 auto;
    }
    
    .header-logo img {
        height: 60px;
    }
    
    /* Hide desktop navigation */
    .header-nav {
        display: none !important;
    }
    
    /* Sepet ve Profil - ORTADA */
    .header-actions {
        display: flex;
        gap: 8px;
        order: 1;
        position: relative;
        align-items: center;
        margin-left: auto;
        margin-right: 10px;
    }
    
    /* Hamburger en sağda */
    .hamburger-menu-btn {
        display: flex !important;
        order: 2;
        margin-left: 0;
    }
    
    /* Cart dropdown mobile fix */
    .cart-menu-wrapper {
        position: static;
    }
    
    .cart-dropdown-menu {
        position: fixed !important;
        right: 20px !important;
        left: auto !important;
        top: 70px !important;
    }
    
    /* User dropdown mobile fix */
    .user-menu-wrapper {
        position: static;
    }
    
    .user-dropdown-menu {
        position: fixed !important;
        right: 20px !important;
        left: auto !important;
        top: 70px !important;
    }
    
    /* Hide search and favorite on mobile */
    .header-actions .search-box,
    .header-actions .icon-button:not(.cart-button) {
        display: none !important;
    }
    
    /* Adjust cart button */
    .cart-button {
        padding: 10px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cart-button svg {
        display: block;
    }
    
    /* User menu button mobile - sadece icon */
    .user-menu-button {
        padding: 10px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
    }
    
    .user-menu-text {
        display: none !important;
    }
    
    .user-menu-arrow {
        display: none !important;
    }
    
    .user-menu-icon {
        display: block !important;
        width: 20px;
        height: 21px;
    }
    
    /* User menu button mobile */
    .user-menu-button {
        padding: 8px 12px;
        font-size: 14px;
        gap: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .user-menu-button svg:first-child {
        width: 18px;
        height: 18px;
        display: block;
    }
    
    .login-button {
        padding: 8px 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .login-button svg {
        width: 18px;
        height: 18px;
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .top-bar-container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .header-logo {
        display: flex !important;
        flex-shrink: 0;
        min-width: 50px;
    }
    
    .header-logo img {
        height: 55px;
        max-width: 100px;
        display: block !important;
    }
    
    .user-menu-button,
    .login-button {
        font-size: 0;
        padding: 10px;
        width: 70px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .user-menu-button svg,
    .login-button svg {
        margin: 0;
        width: 20px;
        height: 20px;
    }
    
    .cart-dropdown-menu {
        right: 15px !important;
        width: calc(100% - 30px) !important;
        max-width: 350px !important;
    }
}

