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

:root {
    --honey-primary: #FFB800;
    --honey-glow: #FFC940;
    --honey-dark: #CC9200;
    --honey-light: #FFE566;

    --cyber-black: #0A0A0F;
    --cyber-dark: #12121A;
    --cyber-medium: #1A1A25;
    --cyber-light: #252535;

    --neon-gold: #FFD700;
    --neon-amber: #FFBF00;
    --electric-honey: #FFE135;

    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-gold: rgba(255, 184, 0, 0.1);
    --glass-border: rgba(255, 184, 0, 0.2);

    --gradient-gold: linear-gradient(135deg, #FFB800 0%, #FFC940 50%, #FFE566 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #12121A 50%, #1A1A25 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(255, 184, 0, 0.3) 0%, transparent 70%);

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cyber-black);
    color: #ffffff;
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]:focus {
    outline: none;
}
.error-message{
    color: #ff4d4d;
}
.free-shipping-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
    border-bottom: 3px solid #FF9800;
    z-index: 1001;
    animation: bannerSlideDown 0.6s ease-out;
}

@keyframes bannerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-icon {
    font-size: 28px;
    color: #000000;
    animation: truckBounce 2s ease-in-out infinite;
}

@keyframes truckBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.banner-text {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    text-align: center;
}

.banner-text strong {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-text em {
    font-style: italic;
    font-weight: 600;
    color: #1A1A1A;
}

.banner-badge {
    font-size: 24px;
    color: #000000;
    animation: giftPulse 2s ease-in-out infinite;
}

@keyframes giftPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.free-shipping-banner:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
}

.free-shipping-banner:hover .banner-icon {
    animation-duration: 0.5s;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--honey-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease, background 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--honey-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.05s ease;
}

.cursor.hover {
    transform: scale(2);
    background: rgba(255, 184, 0, 0.3);
    border-color: var(--honey-glow);
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-black);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-hexagon {
    width: 120px;
    height: 140px;
    position: relative;
}

.hex-loader {
    position: absolute;
    width: 60px;
    height: 35px;
    background: var(--honey-primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: hexPulse 1.5s ease-in-out infinite;
}

.hex-loader:nth-child(1) { top: 0; left: 30px; animation-delay: 0s; }
.hex-loader:nth-child(2) { top: 26px; left: 0; animation-delay: 0.2s; }
.hex-loader:nth-child(3) { top: 26px; left: 60px; animation-delay: 0.4s; }
.hex-loader:nth-child(4) { top: 52px; left: 30px; animation-delay: 0.6s; }
.hex-loader:nth-child(5) { top: 78px; left: 0; animation-delay: 0.8s; }
.hex-loader:nth-child(6) { top: 78px; left: 60px; animation-delay: 1s; }
.hex-loader:nth-child(7) { top: 104px; left: 30px; animation-delay: 1.2s; }

@keyframes hexPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--cyber-light);
    margin-top: 20px;
    overflow: hidden;
    border-radius: 2px;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
header {
    position: fixed;
    top: 57px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--honey-primary), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

header.scrolled .header-glow {
    opacity: 1;
}

.header-top {
    background: linear-gradient(90deg, var(--cyber-dark) 0%, var(--cyber-medium) 50%, var(--cyber-dark) 100%);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.1), transparent);
    animation: scanLine 8s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

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

.contact-info {
    display: flex;
    gap: 30px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-info span:hover {
    color: var(--honey-primary);
    text-shadow: 0 0 20px var(--honey-primary);
}

.contact-info i {
    color: var(--honey-primary);
    font-size: 14px;
}

#header .social-links {
    display: flex;
    gap: 15px;
}

#header .social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#header .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#header .social-link:hover {
    transform: translateY(-3px);
    border-color: var(--honey-primary);
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.3);
}

#header .social-link:hover::before {
    opacity: 1;
}

#header .social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

#header .social-link:hover i {
    color: var(--cyber-black);
}

.header-main {
    padding: 15px 0;
}

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

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

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 12px 20px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.2);
}

.hamburger {
    width: 25px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--honey-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--honey-glow);
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-toggle:hover .hamburger span::after {
    opacity: 1;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--honey-primary);
    text-transform: uppercase;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 50%;
}
.logo img{
    width: 100%;
}
.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.logo-hex {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 184, 0, 0.8)); }
}

.logo-hex span {
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--honey-primary);
    text-transform: uppercase;
}

.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 15px 60px 15px 25px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease;
}

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

.search-input:focus {
    outline: none;
    border-color: var(--honey-primary);
    background: rgba(255, 184, 0, 0.05);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.2), inset 0 0 20px rgba(255, 184, 0, 0.05);
}

.search-btn {
    position: absolute;
    right: 3px;
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn i {
    color: var(--cyber-black);
    font-size: 16px;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.6);
}

.header-icons {
    display: flex;
    gap: 15px;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-icon:hover {
    transform: translateY(-3px);
    border-color: var(--honey-primary);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

.header-icon:hover::before {
    opacity: 1;
}

.header-icon i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.header-icon:hover i {
    color: var(--cyber-black);
}
.user-dropdown-menu i{
    color: rgba(255, 255, 255, 0.8);
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff3366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 9998;
}
.cookies-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.5s ease;
    z-index: 9998;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    position: fixed;
    top: 0;
    left: -500px;
    width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, var(--cyber-dark) 0%, var(--cyber-black) 100%);
    border-right: 1px solid var(--glass-border);
    z-index: 9999;
    transition: left 0.5s cubic-bezier(0.68, -0.15, 0.265, 1.15);
}

.mega-menu.active {
    left: 0;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--honey-primary), transparent);
}

.menu-header {
    padding: 30px;
    background: var(--glass-gold);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--honey-primary);
    text-transform: uppercase;
}

.close-menu {
    width: 45px;
    height: 45px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--honey-primary);
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: var(--honey-primary);
    color: var(--cyber-black);
    transform: rotate(90deg);
}

.menu-items {
    padding: 20px 0;
    max-height: calc(100vh - 110px);
}

.menu-items::-webkit-scrollbar {
    width: 6px;
}

.menu-items::-webkit-scrollbar-track {
    background: var(--cyber-black);
}

.menu-items::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 10px;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--honey-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.menu-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 184, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.menu-link:hover {
    color: var(--honey-primary);
    padding-left: 40px;
}

.menu-link:hover::before {
    transform: scaleY(1);
}

.menu-link:hover::after {
    transform: translateX(0);
}

.menu-link i {
    transition: transform 0.3s ease;
}

.menu-link:hover i {
    transform: translateX(5px);
}

.submenu-hover {
    position: absolute;
    left: 100%;
    top: 0;
    width: 300px;
    background: var(--cyber-dark);
    border: 1px solid var(--glass-border);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 80vh;
}

.menu-item.has-submenu:hover .submenu-hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-hover::-webkit-scrollbar {
    width: 6px;
}

.submenu-hover::-webkit-scrollbar-track {
    background: var(--cyber-black);
    border-radius: 10px;
}

.submenu-hover::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 10px;
}

.submenu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.submenu-link:last-child {
    border-bottom: none;
}

.submenu-link:hover {
    color: var(--honey-primary);
    background: var(--glass-gold);
    padding-left: 35px;
}

.submenu-link i {
    margin-right: 10px;
}

.category-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--cyber-dark);
    border: 1px solid var(--glass-border);
    border-radius: 0 15px 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    width: auto;
    min-width: 550px;
}

.submenu-item.has-categories:hover .category-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.category-submenu::-webkit-scrollbar {
    width: 6px;
}

.category-submenu::-webkit-scrollbar-track {
    background: var(--cyber-black);
    border-radius: 10px;
}

.category-submenu::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 10px;
}

.category-submenu::-webkit-scrollbar-thumb:hover {
    background: var(--honey-glow);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 5px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 170px;
}
.category-item .no-image-icon{
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}
.category-item:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.2);
}

.category-item img {
    width: 100%;
    min-height: 130px;
    object-fit: contain;
    margin-bottom: 5px;
    display: block;
}

.category-icon {
    width: 120px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: var(--cyber-light);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--glass-border);
}

.category-icon i {
    color: var(--honey-primary);
    font-size: 36px;
}

.category-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    word-wrap: break-word;
    width: 100%;
    display: block;
}

.category-item:hover .category-name {
    color: var(--honey-primary);
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.5) 50%, rgba(255, 184, 0, 0.1) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 30px;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: var(--glass-gold);
    border: 1px solid var(--honey-primary);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--honey-primary);
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title span {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.5));
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cyber-btn {
    position: relative;
    padding: 18px 45px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-btn.primary {
    background: var(--gradient-gold);
    color: var(--cyber-black);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.cyber-btn.primary::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--gradient-gold);
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
    z-index: -1;
}

.cyber-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.4);
}

.cyber-btn.secondary {
    background: transparent;
    color: var(--honey-primary);
    border: 2px solid var(--honey-primary);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.cyber-btn.secondary:hover {
    background: var(--glass-gold);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.3), inset 0 0 30px rgba(255, 184, 0, 0.1);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--honey-primary);
    transition: width 0.3s ease;
}

.slider-dot.active::before {
    width: 100%;
    animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
    from { width: 0; }
    to { width: 100%; }
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

section {
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 25px;
    background: var(--glass-gold);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--honey-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.section-description {
    max-width: 600px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.8;
}

.categories-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.categories-slider-container {
    position: relative;
    margin-top: 60px;
}

.categories-grid {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: calc(280px * 4 + 30px * 3);
    margin: 0 auto;
}

.categories-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.category-card {
    width: 280px;
    height: 380px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.category-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.category-card:hover .category-card-inner {
    border-color: var(--honey-primary);
    box-shadow: 0 30px 60px rgba(255, 184, 0, 0.2), 0 0 60px rgba(255, 184, 0, 0.1);
}

.category-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 2;
}

.category-card-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 184, 0, 0.1), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.8s ease;
    z-index: 3;
}

.category-card:hover .category-card-inner::after {
    transform: rotate(45deg) translateY(100%);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.category-card:hover .category-image {
    transform: scale(1.15);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 10;
    transform: translateY(60px);
    transition: transform 0.5s ease;
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--glass-gold);
    border: 1px solid var(--honey-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-wrapper {
    background: var(--honey-primary);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.5);
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.category-card:hover .category-description {
    opacity: 1;
    transform: translateY(0);
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--honey-primary);
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.2s;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link i {
    transition: transform 0.3s ease;
}
.category-link:hover i {
    transform: translateX(5px);
}

.slider-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cyber-medium) 0%, var(--cyber-dark) 100%);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.slider-nav-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-nav-arrow:hover {
    border-color: var(--honey-primary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.3);
}

.slider-nav-arrow:hover::before {
    opacity: 1;
}

.slider-nav-arrow i {
    font-size: 24px;
    color: var(--honey-primary);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-nav-arrow:hover i {
    color: var(--cyber-black);
    transform: scale(1.2);
}

.slider-nav-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.2);
    transition: all 0.5s ease;
}

.slider-nav-arrow:hover::after {
    width: 100%;
    height: 100%;
}

.slider-prev {
    left: -90px;
}

.slider-next {
    right: -90px;
}

@keyframes borderPulse {
    0%, 100% {
        border-color: var(--glass-border);
    }
    50% {
        border-color: rgba(255, 184, 0, 0.5);
    }
}

.slider-nav-arrow {
    animation: borderPulse 3s ease-in-out infinite;
}

.slider-nav-arrow:hover {
    animation: none;
}

.products-section {
    padding: 120px 0;
    position: relative;
    background: transparent;
}
#newProducts .product-info-container, #popularProducts .product-info-container {
    height: calc(100% - 280px);
}
#newProducts .products-slider-container, #popularProducts .products-slider-container {
    position: relative;
    margin-top: 60px;
}

#newProducts .products-grid, #popularProducts .products-grid {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: calc(280px * 4 + 30px * 3);
    margin: 0 auto;
    padding-top: 30px;
    display: grid;
}

#newProducts .products-slider, #popularProducts .products-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#newProducts .product-card, #popularProducts .product-card {
    width: 280px;
    position: relative;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

#newProducts .product-card::before, #popularProducts .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#newProducts .product-card:hover, #popularProducts .product-card:hover {
    transform: translateY(-15px);
    border-color: var(--honey-primary);
    box-shadow: 0 30px 60px rgba(255, 184, 0, 0.15), 0 0 100px rgba(255, 184, 0, 0.1);
    z-index: 10;
}

#newProducts .product-card:hover::before, #popularProducts .product-card:hover::before {
    opacity: 1;
}

#newProducts .product-image-wrapper, #popularProducts .product-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(180deg, var(--cyber-light) 0%, var(--cyber-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#newProducts .product-image-wrapper a, #popularProducts .product-image-wrapper a {
    height: 100%;
}
#newProducts .product-badge, #popularProducts .product-badge {
    padding: 8px 18px;
    border-radius: 8px;
    z-index: 10;
}

#newProducts .product-badge.novo, #popularProducts .product-badge.novo {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

#newProducts .product-badge.trend, #popularProducts .product-badge.trend {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
    animation: pulseBadge 2s ease-in-out infinite;
}

#newProducts .product-badge.sold-out, #popularProducts .product-badge.sold-out {
    background: linear-gradient(135deg, #666, #444);
    color: #fff;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

#newProducts .product-image, #popularProducts .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

#newProducts .product-card:hover .product-image, #popularProducts .product-card:hover .product-image {
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 30px 50px rgba(255, 184, 0, 0.3));
}

#newProducts .product-actions, #popularProducts .product-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

#newProducts .product-card:hover .product-actions, #popularProducts .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#newProducts .action-btn, #popularProducts .action-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#newProducts .action-btn::before, #popularProducts .action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

#newProducts .action-btn:hover, #popularProducts .action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.4);
}

#newProducts .action-btn:hover::before, #popularProducts .action-btn:hover::before {
    transform: translateY(0);
}

#newProducts .action-btn i, #popularProducts .action-btn i {
    font-size: 18px;
    color: var(--cyber-black);
    position: relative;
    z-index: 1;
}

#newProducts .product-info, #popularProducts .product-info {
    padding: 25px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#newProducts .product-info::before, #popularProducts .product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    transition: transform 0.5s ease;
}

#newProducts .product-card:hover .product-info::before, #popularProducts .product-card:hover .product-info::before {
    transform: translateX(-50%) scaleX(1);
}

#newProducts .product-title, #popularProducts .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

#newProducts .product-card:hover .product-title, #popularProducts .product-card:hover .product-title {
    color: #fff;
}

#newProducts .product-price, #popularProducts .product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--honey-primary);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

#newProducts .products-slider-arrow, #popularProducts .products-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cyber-medium) 0%, var(--cyber-dark) 100%);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#newProducts .products-slider-arrow::before, #popularProducts .products-slider-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#newProducts .products-slider-arrow:hover, #popularProducts .products-slider-arrow:hover {
    border-color: var(--honey-primary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.3);
}

#newProducts .products-slider-arrow:hover::before, #popularProducts .products-slider-arrow:hover::before {
    opacity: 1;
}

#newProducts .products-slider-arrow i, #popularProducts .products-slider-arrow i {
    font-size: 24px;
    color: var(--honey-primary);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

#newProducts .products-slider-arrow:hover i, #popularProducts .products-slider-arrow:hover i {
    color: var(--cyber-black);
    transform: scale(1.2);
}

#newProducts .products-slider-arrow::after, #popularProducts .products-slider-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.2);
    transition: all 0.5s ease;
}

#newProducts .products-slider-arrow:hover::after, #popularProducts .products-slider-arrow:hover::after {
    width: 100%;
    height: 100%;
}

#newProducts .products-prev, #popularProducts .products-prev {
    left: -90px;
}

#newProducts .products-next, #popularProducts .products-next {
    right: -90px;
}
#newProducts .products-grid .no-image-icon, #popularProducts .products-grid .no-image-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--cyber-dark);
}
@keyframes borderPulse {
    0%, 100% {
        border-color: var(--glass-border);
    }
    50% {
        border-color: rgba(255, 184, 0, 0.5);
    }
}

#newProducts .products-slider-arrow, #popularProducts .products-slider-arrow {
    animation: borderPulse 3s ease-in-out infinite;
}

#newProducts .products-slider-arrow:hover, #popularProducts .products-slider-arrow:hover {
    animation: none;
}

.support-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, var(--cyber-black) 0%, transparent 20%, transparent 80%, var(--cyber-black) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(255, 184, 0, 0.03) 100px, rgba(255, 184, 0, 0.03) 101px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255, 184, 0, 0.03) 100px, rgba(255, 184, 0, 0.03) 101px);
    pointer-events: none;
}


.support-image {
    position: relative;
    width: 80%;
    border-radius: 20px;
    transition: all 0.5s;
    cursor: pointer;
}
.support-image:hover{
    transform: scale(1.05);
}

.counter-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 184, 0, 0.05) 50%, transparent 100%);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.counter-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.counter-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 184, 0, 0.1), transparent 30%);
    animation: rotateGlow 8s linear infinite;
}
.counter-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 26, 37, 0.85) 100%);
    z-index: 0;
    pointer-events: none;
}

.counter-item:hover {
    transform: translateY(-10px);
    border-color: var(--honey-primary);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.2);
    background: rgba(10, 10, 15, 0.95);
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.counter-item:hover {
    transform: translateY(-10px);
    border-color: var(--honey-primary);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.2);
}

.counter-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.counter-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--honey-primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 184, 0, 0.5);
}

.counter-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.news-section {
    padding: 120px 0;
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.news-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,50%);
    z-index: 2;
    transition: all 0.5s ease;
}

.news-card:hover::before {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 184, 0, 0.3) 20%, rgba(10, 10, 15, 0.98) 100%);
}

.news-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 184, 0, 0.2);
}

.news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card:hover .news-image {
    transform: scale(1.15);
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 3;
    transform: translateY(30px);
    transition: transform 0.5s ease;
}

.news-card:hover .news-content {
    transform: translateY(0);
}

.news-date {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-gold);
    border: 1px solid var(--honey-primary);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--honey-primary);
    margin-bottom: 20px;
}

.news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.news-card:hover .news-excerpt {
    opacity: 1;
    transform: translateY(0);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--honey-primary);
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.2s;
}

.news-card:hover .news-link {
    opacity: 1;
    transform: translateY(0);
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

footer {
    position: relative;
    padding: 50px 0 30px;
    background: linear-gradient(180deg, var(--cyber-black) 0%, #050508 100%);
    overflow: hidden;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--honey-primary), transparent);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.footer-logo img{
    width: 70%;
}
.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social {
    width: 45px;
    height: 45px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.footer-social:hover {
    border-color: var(--honey-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.footer-social:hover::before {
    transform: translateY(0);
}

.footer-social i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer-social:hover i {
    color: var(--cyber-black);
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--honey-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--honey-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '→';
    color: var(--honey-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--honey-primary);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--honey-primary);
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a {
    color: var(--honey-primary);
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 99;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.5);
}

.back-to-top i {
    font-size: 22px;
    color: var(--cyber-black);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 100%;
    max-width: 70%;
    max-height: 90vh;
    background: var(--cyber-dark);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    transform: scale(0.9) translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--honey-primary);
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--honey-primary);
    color: var(--cyber-black);
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-gallery {
    background: var(--cyber-medium);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.modal-details {
    padding: 40px;
    overflow-y: auto;
    max-height: 600px;
}

.modal-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-price {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--honey-primary);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 184, 0, 0.3);
}

.modal-tax {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}
.modal-tax a{
    color: var(--honey-primary);
    text-decoration: underline;
}
.modal-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
    white-space: pre-line;
}

.modal-quantity-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--honey-primary);
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--glass-gold);
}

.quantity-input {
    width: 60px;
    height: 50px;
    background: transparent;
    border: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.quantity-input:focus {
    outline: none;
}

.modal-add-btn {
    flex: 1;
    padding: 18px 30px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--cyber-black);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.modal-add-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.4);
}

.modal-meta {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.modal-meta-item {
    display: flex;
    margin-bottom: 12px;
    font-size: 14px;
}

.modal-meta-label {
    color: rgba(255, 255, 255, 0.5);
    min-width: 130px;
}

.modal-meta-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.modal-meta-value.in-stock {
    color: #00ff88;
}
.modal-meta-value.out-of-stock {
    color: #ff3366;
}
.modal-meta-value.pre-order {
    color: #ffcc00;
}


.modal-gallery .gallery-container {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    height: 100%;
}


.modal-gallery .gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
}

.modal-gallery  .gallery-thumbnails::-webkit-scrollbar {
    width: 6px;
}

.modal-gallery  .gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.modal-gallery  .gallery-thumbnails::-webkit-scrollbar-thumb {
    background:var(--honey-primary);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.modal-gallery  .gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background:var(--honey-primary);
}

.modal-gallery  .gallery-thumbnails {
    scrollbar-width: thin;
    scrollbar-color: var(--honey-primary) rgba(0, 0, 0, 0.2);
}
.modal-gallery .thumbnail {
    width: 100px;
    height: 100px;
    background: var(--cyber-dark);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.modal-gallery .thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-gallery .thumbnail:hover {
    border-color: var(--honey-primary);
}

.modal-gallery .thumbnail:hover::before {
    opacity: 0.5;
}

.modal-gallery .thumbnail.active {
    border-color: var(--honey-primary);
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.4);
}

.modal-gallery .thumbnail.active::before {
    opacity: 0.3;
}

.modal-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.modal-gallery .thumbnail:hover img {
    transform: scale(1.1);
}


.modal-gallery .gallery-thumbnails::-webkit-scrollbar {
    width: 6px;
}

.modal-gallery .gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.modal-gallery .gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 3px;
}

.modal-gallery .gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: var(--honey-glow);
}

.modal-gallery .gallery-main {
    position: relative;
    background: var(--cyber-light);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    height: 500px;
    min-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery .gallery-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.1;
}

.modal-gallery .main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.modal-gallery .gallery-main:hover .main-image {
    transform: scale(1.05);
}

.modal-gallery .zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-gallery .zoom-btn:hover {
    background: var(--gradient-gold);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
}

.modal-gallery .zoom-btn i {
    font-size: 18px;
    color: var(--cyber-black);
}

.modal-gallery .product-main-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    z-index: 10;
}

.modal-gallery .product-main-badge.novo {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.modal-gallery .product-main-badge.trend {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
}

.modal-gallery .product-main-badge.outlet {
    background: linear-gradient(135deg, #FFB800, #FF8800);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

.modal-details::-webkit-scrollbar {
    width: 8px;
}

.modal-details::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-details::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 4px;
}

.modal-details::-webkit-scrollbar-thumb:hover {
    background: var(--honey-glow);
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-height: 80vh;
    max-width: 70%;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    display: flex;
    justify-content: center;
    border-radius: 10px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.6);
}

.lightbox-close i {
    font-size: 20px;
    color: var(--cyber-black);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--gradient-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.5);
}

.lightbox-nav i {
    font-size: 18px;
    color: var(--cyber-black);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 22px;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.lightbox-counter span {
    color: var(--honey-primary);
}

.notification,.home-notification {
    position: fixed;
    top: 30px;
    right: -450px;
    padding: 20px 30px;
    background: var(--cyber-dark);
    border: 1px solid var(--honey-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10001;
    transition: right 0.5s cubic-bezier(0.68, -0.15, 0.265, 1.15);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.3);
}
.notification.show, .home-notification.show {
    right: 30px;
}

.notification-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notification-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}
.honey-showcase-section {
    padding: 150px 0;
    position: relative;
    background: linear-gradient(180deg, var(--cyber-black) 0%, var(--cyber-dark) 50%, var(--cyber-black) 100%);
    overflow: hidden;
    background: transparent;
}

.honeycomb-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 50px;
}

.hex-cell {
    width: 100%;
    height: 150px;
    background: var(--honey-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexFloat 8s ease-in-out infinite;
}

.hex-cell:nth-child(1) { animation-delay: 0s; }
.hex-cell:nth-child(2) { animation-delay: 1s; }
.hex-cell:nth-child(3) { animation-delay: 2s; }
.hex-cell:nth-child(4) { animation-delay: 3s; }
.hex-cell:nth-child(5) { animation-delay: 4s; }
.hex-cell:nth-child(6) { animation-delay: 5s; }

@keyframes hexFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.03; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.06; }
}

.honey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.honey-visual {
    position: relative;
}

.honey-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(255, 184, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.honey-main-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(255, 184, 0, 0.3);
    border: 2px solid var(--glass-border);
    transition: all 0.5s ease;
}

.honey-main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(255, 184, 0, 0.4);
    border-color: var(--honey-primary);
}

.honey-main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.honey-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 184, 0, 0.2) 100%);
    z-index: 1;
}

.floating-honey-drop {
    position: absolute;
    font-size: 40px;
    filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.8));
    z-index: 2;
    animation: dropFloat 6s ease-in-out infinite;
}

.honey-drop-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.honey-drop-2 {
    top: 50%;
    left: -20px;
    animation-delay: 2s;
}

.honey-drop-3 {
    bottom: 10%;
    right: -20px;
    animation-delay: 4s;
}

@keyframes dropFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.honey-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: cardFloat 3s ease-in-out infinite;
}

.stat-card-1 {
    top: 20px;
    right: -50px;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 150px;
    left: -50px;
    animation-delay: 1s;
}

.stat-card-3 {
    bottom: 20px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stat-icon {
    font-size: 35px;
    animation: iconSpin 10s linear infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--honey-primary);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.honey-content {
    position: relative;
}

.honey-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(0, 255, 136, 0.6); }
}

.honey-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.honey-title span {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.5));
}

.honey-description {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.honey-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.honey-type-card {
    padding: 25px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.honey-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.honey-type-card:hover {
    transform: translateY(-10px);
    border-color: var(--honey-primary);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.3);
}

.honey-type-card:hover::before {
    opacity: 0.15;
}

.honey-type-icon {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: iconBounce 3s ease-in-out infinite;
}

.honey-type-card:nth-child(1) .honey-type-icon { animation-delay: 0s; }
.honey-type-card:nth-child(2) .honey-type-icon { animation-delay: 0.5s; }
.honey-type-card:nth-child(3) .honey-type-icon { animation-delay: 1s; }

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.honey-type-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--honey-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.honey-type-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.honey-type-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 1;
}

.honey-benefits {
    margin-bottom: 40px;
}

.benefits-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--honey-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 20px;
    color: #00ff88;
}

.benefit-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.honey-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.honey-actions .cyber-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.honey-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
    transform: translateY(-3px);
}

.trust-badge i {
    color: var(--honey-primary);
    font-size: 16px;
}

.honey-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    display: none;
}

.honey-wave svg {
    width: 100%;
    height: 100%;
}

.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -650px;
    width: 100%;
    max-width: 550px;
    height: 100%;
    background: var(--cyber-dark);
    border-left: 2px solid var(--honey-primary);
    box-shadow: -10px 0 50px rgba(255, 184, 0, 0.2);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
    right: 0;
}
.cart-sidebar .cart-item-info a{
    color: rgba(255, 255, 255, 0.9);
}

.cart-header {
    padding: 30px;
    background: var(--cyber-medium);
    border-bottom: 2px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--honey-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-close-btn {
    width: 40px;
    height: 40px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close-btn:hover {
    background: var(--gradient-gold);
    border-color: var(--honey-primary);
    transform: rotate(90deg);
}

.cart-close-btn i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.cart-close-btn:hover i {
    color: var(--cyber-black);
}


.cart-items-container {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    padding-bottom: 0;
}

.cart-items-container::-webkit-scrollbar {
    width: 8px;
}

.cart-items-container::-webkit-scrollbar-track {
    background: var(--cyber-medium);
}

.cart-items-container::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 10px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.cart-empty-icon {
    width: 120px;
    height: 120px;
    background: var(--glass-white);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.cart-empty-icon i {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.3);
}

.cart-empty h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.cart-empty p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}

.btn-continue-shopping {
    padding: 12px 30px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: var(--cyber-black);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--cyber-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cart-item-image a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 5px;
}

.cart-item-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-variant {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.cart-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--honey-primary);
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    padding: 0 15px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    border-color: #ff3366;
    transform: scale(1.1);
}

.cart-item-remove i {
    font-size: 14px;
    color: #ff3366;
}

.cart-item-remove:hover i {
    color: #fff;
}

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

.cart-qty-control {
    display: flex;
    align-items: center;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--honey-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover {
    background: var(--glass-gold);
}

.cart-qty-value {
    min-width: 40px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    padding: 0 10px;
}

.cart-item-subtotal {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.cart-item-subtotal span {
    color: var(--honey-primary);
    font-size: 16px;
}

.cart-footer {
    padding: 25px 30px;
    background: var(--cyber-medium);
    border-top: 2px solid var(--glass-border);
}

.cart-summary {
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cart-summary-row.total {
    border-top: 2px solid var(--glass-border);
    margin-top: 10px;
    padding-top: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.cart-summary-row.total .cart-summary-value {
    color: var(--honey-primary);
    font-size: 22px;
}

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

.btn-view-cart,
.btn-checkout {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-view-cart {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.9);
}

.btn-view-cart:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
}

.btn-checkout {
    background: var(--gradient-gold);
    color: var(--cyber-black);
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 184, 0, 0.5);
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.cart-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.trust-badge-item i {
    font-size: 18px;
    color: var(--honey-primary);
}

@keyframes fadeOutLeft {
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.cart-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-loading-overlay.active {
    display: flex;
    opacity: 1;
}

.cart-loader-content {
    text-align: center;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cart-loader-icon {
    width: 100px;
    height: 100px;
    background: var(--glass-white);
    border: 3px solid var(--honey-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    animation: rotateLoader 2s linear infinite;
}

@keyframes rotateLoader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cart-loader-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--honey-primary);
    animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cart-loader-icon i {
    font-size: 40px;
    color: var(--honey-primary);
}

.cart-loader-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.cart-loader-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    padding: 18px 25px;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999999;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-notification.show {
    right: 30px;
}

.cart-notification i {
    font-size: 24px;
}

.cart-notification.success {
    border-color: rgba(0, 255, 136, 0.5);
}

.cart-notification.success i {
    color: #00ff88;
}

.cart-notification.error {
    border-color: rgba(255, 51, 102, 0.5);
}

.cart-notification.error i {
    color: #ff3366;
}

.cart-notification span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.order-success-page {
    min-height: 100vh;
    padding: 180px 0 100px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.success-animation-container {
    text-align: center;
    margin-bottom: 60px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    position: relative;
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
    }
    50% {
        box-shadow: 0 0 80px rgba(0, 255, 136, 0.8);
    }
}

.checkmark-circle::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.checkmark-icon {
    font-size: 60px;
    color: #000;
    animation: checkmarkDraw 0.8s ease-in-out 0.3s forwards;
    opacity: 0;
}

@keyframes checkmarkDraw {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.success-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.success-order-number {
    display: inline-block;
    padding: 12px 25px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--honey-primary);
    margin-top: 10px;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

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

.order-details-box {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.details-section {
    margin-bottom: 35px;
}

.details-section:last-child {
    margin-bottom: 0;
}

.details-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--honey-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-title i {
    font-size: 20px;
}

.details-grid {
    display: grid;
    gap: 15px;
}

.detail-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.order-success-items {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.order-success-items::-webkit-scrollbar {
    width: 6px;
}

.order-success-items::-webkit-scrollbar-track {
    background: var(--cyber-medium);
    border-radius: 10px;
}

.order-success-items::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 10px;
}

.order-success-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
}

.order-success-item-image {
    width: 70px;
    height: 70px;
    background: var(--cyber-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-success-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.order-success-item-details {
    flex: 1;
}

.order-success-item-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}
.order-success-item-variant{
    font-size: 13px;
    color: rgba(255, 184, 0, 0.8);
    margin-bottom: 5px;
}
.order-success-item-qty {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.order-success-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--honey-primary);
}

.order-success-totals {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    margin-top: 20px;
}

.success-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.success-total-row.total {
    border-top: 2px solid var(--glass-border);
    margin-top: 10px;
    padding-top: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.success-total-row.total .total-value {
    color: var(--honey-primary);
    font-size: 24px;
}

.success-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.next-steps-box {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
}

.next-steps-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--honey-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.next-steps-title i {
    font-size: 20px;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.next-step-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.next-step-item:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyber-black);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.success-btn {
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.success-btn.primary {
    background: var(--gradient-gold);
    color: var(--cyber-black);
}

.success-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 184, 0, 0.5);
}

.success-btn.secondary {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.9);
}

.success-btn.secondary:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
}

.success-btn i {
    font-size: 16px;
}

.support-box {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.support-icon i {
    font-size: 28px;
    color: var(--cyber-black);
}

.support-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.support-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 15px;
}

.support-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--honey-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #fff;
}

.contact-item i {
    font-size: 16px;
}

.email-confirmation {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.email-confirmation i {
    font-size: 40px;
    color: #00ff88;
    margin-bottom: 15px;
}

.email-confirmation h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 8px;
}

.email-confirmation p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.confetti {
    width: 10px;
    height: 10px;
    background: var(--honey-primary);
    position: absolute;
    animation: confetti-fall 3s linear;
    pointer-events: none;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.user-dropdown-wrapper {
    position: relative;
    width: auto;
    min-width: 50px;
}

.user-dropdown-trigger {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.user-dropdown-trigger:hover {
    background: var(--glass-white);
}

.user-name-badge {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF !important;
    z-index: 1;
}
.user-dropdown-wrapper:hover .user-dropdown-trigger .user-name-badge {
    color: var(--cyber-black)!important;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    min-width: 280px;
    background: var(--cyber-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.user-dropdown-wrapper:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: var(--cyber-dark);
    border-left: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    transform: rotate(45deg);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--glass-white);
    border-radius: 12px;
    margin-bottom: 8px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--honey-primary);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--cyber-black);
    font-size: 20px;
    font-weight: 700;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.user-full-name {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--glass-white);
    color: var(--honey-primary);
    padding-left: 20px;
}

.dropdown-item i {
    width: 20px;
    font-size: 16px;
    text-align: center;
}

.dropdown-item span {
    flex: 1;
}

.logout-form {
    margin: 0;
}

.logout-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.user-login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.user-login-link:hover {
    background: var(--glass-white);
    color: var(--honey-primary);
}

.login-text {
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.wishlist-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff3366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.dropdown-item i {
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.8)!important;
}

.dropdown-item:hover i {
    transform: translateX(3px);
}


.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--cyber-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast i {
    font-size: 20px;
}

.toast-success {
    border-left: 4px solid #10B981;
}

.toast-success i {
    color: #10B981;
}

.toast-error {
    border-left: 4px solid #EF4444;
}

.toast-error i {
    color: #EF4444;
}

.toast-info {
    border-left: 4px solid #3B82F6;
}

.toast-info i {
    color: #3B82F6;
}

.cart-bounce {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(0.9);
    }
    75% {
        transform: scale(1.1);
    }
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 0 20px;
    text-align: center;
}

.empty-cart-message i {
    font-size: 80px;
    color: rgba(255, 184, 0, 0.3);
    margin-bottom: 20px;
}
.empty-cart-message a{
    display: flex;
    align-items: center;
}
.empty-cart-message a i{
    font-size: 20px;
    color: var(--cyber-black);
    margin-bottom: 0;
}
.empty-cart-message h3 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.empty-cart-message p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.empty-cart-message .btn-primary {
    padding: 14px 32px;
    background: var(--gradient-gold);
    border-radius: 12px;
    color: var(--cyber-black);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.empty-cart-message .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EF4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.search-wrapper {
    position: relative;
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--cyber-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: 600px;
    overflow-y: auto;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: searchDropdownFadeIn 0.2s ease;
}

@keyframes searchDropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results-dropdown::-webkit-scrollbar {
    width: 8px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 12px 12px 0;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: var(--text-primary);
    border-radius: 4px;
}

.search-section {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-section:last-child {
    border-bottom: none;
}

.search-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.search-section-title i {
    font-size: 14px;
}

.search-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.search-category-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.search-category-item > i:first-child {
    font-size: 18px;
    color: var(--text-primary);
    min-width: 20px;
}

.category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-name {
    font-size: 14px;
    font-weight: 500;
}

.category-parent {
    font-size: 12px;
    color: var(--text-secondary);
}

.search-category-item > i:last-child {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.search-category-item:hover > i:last-child {
    opacity: 1;
}

.search-products {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.search-product-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.search-product-image {
    width: 100px;
    height: 100px;
    min-width: 50px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-item-image .no-image i{
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
}
.search-product-info-wrapper{
    display: flex;
    justify-content: space-between;
    width: 70%;
    align-items: center;
}
.search-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

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


.search-product-category {
    font-size: 12px;
    color: var(--text-secondary);
}

.search-product-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.search-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 12px;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.search-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.search-no-results i {
    font-size: 32px;
    opacity: 0.5;
}

.search-no-results p {
    margin: 0;
    font-size: 14px;
}

.search-no-results strong {
    color: var(--text-primary);
}

.search-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 12px;
    color: #ef4444;
    text-align: center;
}

.search-error i {
    font-size: 32px;
}

.search-error p {
    margin: 0;
    font-size: 14px;
}
.mark{
    color: var(--honey-primary);
}

.modal-variants-section {
    margin-bottom: 30px;
    padding: 0;
    border-radius: 20px;
}

.modal .variant-group {
    margin-bottom: 20px;
}

.modal .variant-group:last-child {
    margin-bottom: 0;
}

.modal .variant-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--honey-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal .variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.modal .variant-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.modal .variant-option:hover {
    transform: translateY(-2px);
}

.modal .variant-option.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--honey-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.modal .variant-option[data-stock="0"] {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.modal .variant-option[data-stock="0"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #F44336;
    transform: translateY(-50%) rotate(-15deg);
}

.modal .out-of-stock-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #F44336;
    font-weight: 600;
    white-space: nowrap;
}

.modal .variant-option.pulse {
    animation: variantPulse 0.3s ease;
}

@keyframes variantPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.modal .variant-type-boja .variant-option {
    padding: 0;
    margin-bottom: 15px;
}

.modal .color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.modal .color-circle.plava{
    background-color: blue;
}
.modal .color-circle.crna{
    background-color: black;
}
.modal .color-circle.bela{
    background-color: white;
}
.modal .color-circle.crvena{
    background-color: red;
}
.modal .color-circle.žuta{
    background-color: yellow;
}
.modal .color-circle.zelena {
    background-color: green;
}
.modal .color-circle.siva {
    background-color: gray;
}
.modal .color-circle.roza {
    background-color: pink;
}
.modal .color-circle.ljubičasta {
    background-color: purple;
}
.modal .color-circle.narandžasta {
    background-color: orange;
}
.modal .color-circle.braon {
    background-color: brown;
}
.modal .color-circle.khaki{
    background-color: #e9b99d;
}
.modal .variant-option:hover .color-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.modal .variant-option.active .color-circle {
    border-color: var(--honey-primary);
    box-shadow: 0 0 12px rgba(255, 184, 0, 0.5);
}

.modal .variant-type-boja .variant-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.modal .variant-type-veličina .variant-option,
.modal .variant-type-materijal .variant-option,
.modal .variant-type-broj-komada .variant-option,
.modal .variant-type-pakovanje .variant-option{
    min-width: 60px;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;

}

.modal .variant-text {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal .variant-option.active .variant-text {
    color: var(--honey-primary);
}
.modal .variant-type-veličina .variant-option.active, .modal .variant-type-materijal .variant-option.active, .modal .variant-type-broj-komada .variant-option.active, .modal .variant-type-pakovanje .variant-option.active {
    border-color: var(--honey-primary);
}

.variant-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--honey-primary);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s ease;
}

.variant-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.variant-notification.error {
    background: #F44336;
}

.variant-notification.success {
    background: #4CAF50;
}

#modalNoImage{
    font-size: 100px;
}

.modal .color-circle[style*="rgb(255, 255, 255)"],
.modal .color-circle[style*="#ffffff"],
.modal .color-circle[style*="#fff"],
.modal .color-circle[style*="white"] {
    border-color: #999 !important;
}

.modal .color-circle[style*="rgb(255,"],
.modal .color-circle[style*="rgb(254,"] {
    border-color: rgba(0, 0, 0, 0.3);
}
#chooseVariantMessage{
    margin-top: 20px;
}
.add-to-wishlist.in-wishlist i {
    color: #EF4444 !important;
}
.product-badge-wrapper{
    display: flex;
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.news-section .posts-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-section .post-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(30px);
}

.news-section .post-card.animate-in {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-section .post-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.2);
}

.news-section .post-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-section .post-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.news-section .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-section .post-card:hover .post-image img {
    transform: scale(1.1);
}

.news-section .post-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 157, 0, 0.05));
    color: rgba(255, 184, 0, 0.3);
    font-size: 60px;
}

.news-section .post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
}

.news-section .post-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 184, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #0A0A0F;
    z-index: 1;
}

.news-section .post-body {
    padding: 24px;
}

.news-section .post-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.news-section .post-meta-top i {
    color: var(--honey-primary);
    font-size: 14px;
}

.news-section .post-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.news-section .post-card:hover .post-title {
    color: var(--honey-primary);
}

.news-section .post-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.news-section .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.news-section .post-tag {
    padding: 4px 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #3B82F6;
}

.news-section .post-tag-more {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.news-section .post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.news-section .post-author,
.news-section .post-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-section .post-author i,
.news-section .post-views i {
    color: var(--honey-primary);
    font-size: 14px;
}

.news-section .post-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFB800, #FF9D00);
    border-radius: 50%;
    color: #0A0A0F;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.news-section .post-card:hover .post-arrow {
    opacity: 1;
    transform: scale(1);
}
.news-section .empty-state {
    text-align: center;
    padding: 20px;
}

.news-section .empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.1);
    border: 2px dashed rgba(255, 184, 0, 0.3);
    border-radius: 50%;
    font-size: 48px;
    color: rgba(255, 184, 0, 0.5);
}

.news-section .empty-state h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.news-section .empty-state p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.news-section .empty-state .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FFB800, #FF9D00);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #0A0A0F;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-section .empty-state .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--cyber-dark) 0%, var(--cyber-black) 100%);
    border-top: 2px solid var(--honey-primary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 10px 0;
    backdrop-filter: blur(10px);
}


.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    border-radius: 12px;
    min-width: 70px;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-nav-item.active {
    background: var(--glass-gold);
    border: 1px solid var(--glass-border);
}

.mobile-nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-item span {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-item.active i,
.mobile-nav-item.active span {
    color: var(--honey-primary);
}

@media (hover: hover) {
    .mobile-nav-item:hover {
        background: var(--glass-white);
        border: 1px solid rgba(255, 184, 0, 0.3);
    }

    .mobile-nav-item:hover i,
    .mobile-nav-item:hover span {
        color: var(--honey-glow);
    }
}

.mobile-nav-item .mobile-badge {
    position: absolute;
    top: 2px;
    right: 12px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    padding: 0 5px;
    animation: mobileBadgePulse 2s ease-in-out infinite;
    background: #EF4444;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}
.mobile-nav-item .mobile-wishlist-badge{
    top: 2px;
    right: 30px;
}
@keyframes mobileBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.2) 0%, transparent 70%);
    border-radius: 12px;
    z-index: -1;
}

@keyframes navItemClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.mobile-nav-item:active {
    animation: navItemClick 0.3s ease;
}

.mobile-nav-item.cart-open {
    background: var(--gradient-gold);
}

.mobile-nav-item.cart-open i,
.mobile-nav-item.cart-open span {
    color: var(--cyber-black);
}

.mobile-nav-item {
    overflow: hidden;
}

.mobile-nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-nav-item:active::after {
    width: 200px;
    height: 200px;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 80px;
}

.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.page-link {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-link:hover {
    border-color: var(--honey-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.page-link:hover::before {
    opacity: 1;
}

.page-link span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.page-link:hover span {
    color: var(--cyber-black);
}

.page-link.active {
    background: var(--gradient-gold);
    border-color: var(--honey-primary);
    color: var(--cyber-black);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
}

.page-link.active span {
    color: var(--cyber-black);
}

.page-link.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.page-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
@media(max-width: 1600px){
    .slider-next,#newProducts .products-next, #popularProducts .products-next {
        right: -25px;
    }
    .slider-prev,#newProducts .products-prev, #popularProducts .products-prev {
        left: -25px;
    }
}
@media (min-width: 1400px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-submenu {
        min-width: 550px;
    }
}
@media (max-width: 1650px){
    .modal{
        max-width: 90%;
    }
}
@media (max-width: 1400px) {
    .search-container{
        flex: none;
        width: 40%;
    }
    .categories-grid, #newProducts .products-grid, #popularProducts .products-grid{
        max-width: calc(280px * 3 + 30px * 2);
    }

    .slider-prev, #newProducts .products-prev, #popularProducts .products-prev  {
        left: 0;
    }

    .slider-next, #newProducts .products-next, #popularProducts .products-next {
        right: 0;
    }
}
@media (max-width: 1399px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-submenu {
        min-width: 400px;
    }
}
@media (max-width: 1200px) {
    .modal-gallery .gallery-main{
        width: 450px;
    }
    .modal-content {
        grid-template-columns: 1fr;
        overflow-y: auto;
        max-height: 90vh;
    }
    .modal-content::-webkit-scrollbar {
         width: 8px;
     }

    .modal-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .modal-content::-webkit-scrollbar-thumb {
        background: var(--honey-primary);
        border-radius: 4px;
    }

    .modal-content::-webkit-scrollbar-thumb:hover {
        background: var(--honey-glow);
    }
    .modal-add-btn{
        width: 300px;
        flex: none;
    }
    .modal-details{
        max-height: none;
        overflow: hidden;
    }
    .category-card .category-content {
        transform: translateY(0);
    }
    .category-card .category-description, .category-card .category-link {
        opacity: 1;
        transform: translateY(0);
    }
    #newProducts .product-card .product-actions, #popularProducts .product-card .product-actions {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    .search-results-dropdown{
        max-height: 500px;
    }
    .success-content {
        grid-template-columns: 1fr 400px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lightbox-container {
        max-width: 75%;
        max-height: 65vh;
    }

    .lightbox-image {
        max-height: 65vh;
    }

    #newProducts .products-slider-arrow, #popularProducts .products-slider-arrow {
        width: 60px;
        height: 60px;
    }

    .slider-prev, #newProducts .products-prev, #popularProducts .products-prev {
        left: 10px;
    }

    .slider-next, #newProducts .products-next, #popularProducts .products-next {
        right: 10px;
    }

    .slider-nav-arrow {
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 1024px) {
    .mega-menu{
        overflow-y: scroll;
    }
    .honey-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .honey-stat-card {
        display: none;
    }

    .honey-visual {
        order: 2;
    }

    .honey-content {
        order: 1;
    }
    .support-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
    .submenu-hover {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: rgba(255, 255, 255, 0.03);
        border: none;
    }

    .menu-item.has-submenu.active .submenu-hover {
        max-height: 2000px;
    }

    .menu-item.has-submenu:hover .submenu-hover {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .menu-item.has-submenu > .menu-link {
        cursor: pointer;
        user-select: none;
    }

    .menu-item.has-submenu.active > .menu-link i {
        transform: rotate(90deg);
    }

    .category-submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-top: 1px solid rgba(255, 184, 0, 0.1);
        border-radius: 0;
        padding: 0;
        min-width: auto;
    }

    .submenu-item.has-categories.active .category-submenu {
        max-height: 2000px;
        padding: 0;
    }

    .submenu-item.has-categories:hover .category-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .submenu-item.has-categories > .submenu-link {
        cursor: pointer;
        user-select: none;
    }

    .submenu-item.has-categories.active > .submenu-link i:last-child {
        transform: rotate(90deg);
    }

    .category-item img,
    .category-item .no-image-icon {
        display: none;
    }

    .category-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .category-item {
        flex-direction: row;
        padding: 12px 20px 12px 40px;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 184, 0, 0.1);
        border-radius: 0;
        min-height: auto;
        gap: 0;
    }

    .category-item:last-child {
        border-bottom: none;
    }

    .category-item:hover {
        background: rgba(255, 184, 0, 0.05);
        border-color: rgba(255, 184, 0, 0.2);
        transform: none;
        box-shadow: none;
        padding-left: 45px;
    }

    .category-name {
        font-size: 14px;
        text-align: left;
        width: 100%;
    }

    .submenu-link {
        padding: 15px 20px 15px 30px;
    }

    .submenu-link:hover {
        padding-left: 40px;
    }

    .menu-item.has-submenu > .menu-link::after,
    .submenu-item.has-categories > .submenu-link::after {
        transition: transform 0.3s ease;
    }

    .submenu-hover .submenu-link {
        padding-left: 30px;
    }

    .category-submenu .category-item {
        padding-left: 40px;
    }

    .submenu-hover,
    .category-submenu {
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}
@media (max-width: 992px) {
    .modal-gallery .gallery-main{
        height: 450px;
    }
    .lightbox-nav{
        width: 50px;
        height: 50px;
    }
    .lightbox-counter{
        bottom: -90px;
    }
    .slider-prev, #newProducts .products-prev, #popularProducts .products-prev {
        left: 0;
    }
    .slider-next, #newProducts .products-next, #popularProducts .products-next {
        right: 0;
    }
    .hero-section{
        height: 180vh;
    }
    .scroll-indicator{
        bottom: 200px;
    }
    .back-to-top {
        bottom: 100px;
    }
    .logo{
        width: 200px;
    }
    .header-content{
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    .header-left{
        justify-content: space-between;
        width: 100%;
    }
    .search-container{
        flex: none;
        width: 80%;
    }
    .header-icons {
        display: none !important;
    }
    .mobile-bottom-nav {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
    .header-top{
        display: none;
    }
    .success-content {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-box {
        min-width: 100%;
    }
    .modal {
        max-width: 90%;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-gallery .gallery-container {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }

    .modal-gallery .thumbnail {
        width: 80px;
        height: 80px;
    }
    .categories-grid, #newProducts .products-grid, #popularProducts .products-grid{
        max-width: calc(280px * 2 + 30px * 1);
    }
    .modal .variant-options .variant-type-boja{
        gap: 10px;
    }
}
@media (max-width: 804px){
    header{
        top: 70px;
    }
}
@media (max-width: 768px) {
    #newProducts .product-info-container, #popularProducts .product-info-container{
        height: calc(100% - 250px);
    }
    .modal-gallery .gallery-main{
        height: 400px;
        width: 90%;
        min-width: auto;
    }
    .lightbox-close{
        right: 15px;
    }
    .lightbox-counter{
        bottom: -130px;
    }
    .lightbox-container{
        max-width: 90%;
    }
    .lightbox-next{
        right: 15px;
    }
    .lightbox-prev{
        left: 15px;
    }
    .categories-section,.products-section, .counter-section{
        padding: 50px 0;
    }
    .honey-showcase-section,.support-section{
        padding: 70px 0;
    }
    .hero-section{
        height: 140vh;
    }
    header{
        top: 66px;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }
    .honey-showcase-section {
        padding: 80px 0;
    }

    .honey-types {
        grid-template-columns: 1fr;
    }

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

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

    .honey-actions .cyber-btn {
        width: 100%;
        justify-content: center;
    }

    .honey-main-image img {
        height: 400px;
    }

    .floating-honey-drop {
        display: none;
    }

    .honeycomb-pattern {
        display: none;
    }

    .success-checkmark {
        width: 120px;
        height: 120px;
    }

    .checkmark-circle {
        width: 120px;
        height: 120px;
    }

    .checkmark-icon {
        font-size: 55px;
    }

    .order-details-box {
        padding: 25px;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .user-dropdown-menu {
        right: -10px;
        min-width: 260px;
    }

    .user-dropdown-menu::before {
        right: 15px;
    }
    .login-text {
        display: block;
    }
    .user-name-badge {
        display: block;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid.list-view .product-card {
        grid-template-columns: 1fr;
    }

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

    .view-toggle {
        display: none;
    }

    .pagination-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .cursor, .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

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

    .search-container {
        order: 3;
        flex: 1 1 100%;
        margin-top: 15px;
        max-width: 100%;
    }

    .hero-section {
        min-height: 600px;
    }

    .categories-grid, #newProducts .products-grid, #popularProducts .products-grid{
        gap: 20px;
    }

    .category-card {
        width: 100%;
        max-width: 350px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .modal-overlay {
        padding: 20px;
    }

    .modal {
        max-height: 95vh;
    }

    .modal-gallery {
        padding: 30px 20px;
    }

    .modal-details {
        padding: 30px 20px;
    }

    .modal-gallery .gallery-container {
        grid-template-columns: 90px 1fr;
        gap: 10px;
    }

    .modal-gallery .thumbnail {
        width: 70px;
        height: 70px;
    }

    .modal-price {
        font-size: 26px;
    }

    .modal-quantity-row {
        flex-direction: column;
        align-items: flex-start;
    }
    #newProducts .products-slider-arrow, #popularProducts .products-slider-arrow {
        width: 50px;
        height: 50px;
    }

    #newProducts .products-slider-arrow i, #popularProducts .products-slider-arrow i {
        font-size: 20px;
    }

    #newProducts .products-prev, #popularProducts .products-prev {
        left: 5px;
    }

    #newProducts .products-next, #popularProducts .products-next {
        right: 5px;
    }

    #newProducts .product-image-wrapper, #popularProducts .product-image-wrapper {
        height: 250px;
    }
    .slider-nav-arrow {
        width: 50px;
        height: 50px;
    }

    .slider-nav-arrow i {
        font-size: 20px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    .categories-grid, #newProducts .products-grid, #popularProducts .products-grid{
        max-width: 280px;
    }
    .banner-container {
        padding: 10px 15px;
        gap: 10px;
    }

    .banner-icon {
        font-size: 22px;
    }

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

    .banner-text strong {
        font-size: 14px;
        display: block;
        margin-bottom: 2px;
    }

    .banner-badge {
        font-size: 20px;
    }
    .modal-variants-section {
        padding: 16px;
    }

    .variant-label {
        font-size: 14px;
    }


    .modal .variant-option {
        padding: 8px 12px;
    }
    .modal .variant-type-boja .variant-name {
        font-size: 13px;
    }

    .modal .variant-text {
        font-size: 13px;
    }

    .modal .variant-type-veličina .variant-option,
    .modal .variant-type-materijal .variant-option,
    .modal .variant-type-broj-komada .variant-option,
    .modal .variant-type-pakovanje .variant-option{
        min-width: 50px;
        padding: 10px 16px;
    }

    .variant-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 16px;
        font-size: 14px;
    }
    .search-results-dropdown {
        max-height: 400px;
    }

    .search-product-item {
        padding: 8px;
    }
}
@media(max-width: 650px){
    .hero-section{
        height: 120vh;
    }
}
@media (max-width: 576px) {
    .cart-item-bottom{
        gap: 10px;
        flex-wrap: wrap;
    }
    .modal-gallery .product-main-badge{
        font-size: 11px;
        padding: 8px 12px;
    }
    .modal-gallery .gallery-thumbnails{
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        max-width: 100%;
        padding-bottom: 15px;
        order: 2;
    }
    .modal-gallery .gallery-container{
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .support-image{
        width: 100%;
    }
    .lightbox-container{
    max-width: 100%;
    }
    .hero-section{
        height: 100vh;
    }
    .container{
        padding: 0 10px;
    }
    .cart-notification {
        min-width: auto;
        left: 20px;
        right: 20px;
    }

    .cart-notification.show {
        right: 20px;
    }
    .cart-summary-row{
        padding: 5px 0;
    }
    .cart-summary{
        margin-bottom: 10px;
    }
    .cart-header{
        padding: 15px 30px;
    }
    .cart-summary-row.total{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
@media (max-width: 519px){
    header{
        top: 85px;
    }
}
@media (max-width: 480px) {
    .mega-menu{
        width: 100%;
    }
    .success-title{
        font-size: 25px;
    }
    .success-subtitle{
        font-size: 15px;
    }
    .checkmark-circle,.success-checkmark{
        width: 80px;
        height: 80px;
    }
    .checkmark-icon{
        font-size: 40px;
    }
    .checkmark-circle::before{
        width: 100px;
        height: 100px;
    }
    .success-total-row.total{
        flex-direction: column;
        gap: 10px;
        align-items:center;
    }
    .modal-add-btn{
        width: 80%;
        padding: 15px 20px;
    }
    .hero-section {
        height: 90vh;
    }

    .search-product-info-wrapper {
        align-items: flex-start;
        gap: 5px;
        flex-direction: column;
    }

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

    .banner-container {
        flex-direction: column;
        gap: 8px;
        padding: 5px;
    }

    .banner-icon {
        font-size: 24px;
    }

    .banner-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .banner-text strong {
        font-size: 13px;
    }

    .banner-badge {
        display: none;
    }

    .modal .variant-option.active::after {
        top: -6px;
        right: -6px;
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .modal .color-circle {
        width: 24px;
        height: 24px;
    }

    .modal-gallery .gallery-main {
        height: 350px;
        width: 100%;
    }

    .modal-gallery .thumbnail {
        width: 60px;
        height: 60px;
    }

    .modal {
        width: 100%;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        right: 15px;
    }
    .toast.show{
        transform: translateX(10px);
    }
    .cart-item{
        grid-template-columns: 1fr;
    }
    .cart-item-image{
        width: 150px;
        height: 150px;
        margin: 0px auto;
    }
}
@media (max-width: 450px){
    .order-success-item-image{
        width: 100px;
        height: 100px;
    }
    .order-success-item{
        flex-direction: column;
        align-items: center;
    }
    .order-success-item-details{
        text-align: center;
    }
}
@media (max-width: 400px) {
    header {
        top: 101px;
    }
}
