/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(44, 24, 16, 1);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.logo-container {
    flex-shrink: 0;
}

.logo-container img {
    max-height: 70px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-container img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(201, 169, 97, 0.4));
}

.primary-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: var(--color-secondary);
    font-weight: 600;
    padding: 12px 8px;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-family: var(--font-secondary);
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-menu li a:hover::before,
.nav-menu li a:focus::before {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--color-white);
}

.nav-menu li.menu-item-has-children>a::after {
    content: '\25BC';
    font-size: 8px;
    margin-left: 6px;
    transition: var(--transition-fast);
}

.nav-menu li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

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

.cart-icon {
    color: var(--color-secondary);
    font-size: 22px;
    position: relative;
    transition: var(--transition-smooth);
    padding: 8px;
    border-radius: 50%;
}

.cart-icon:hover {
    transform: scale(1.15);
    background: rgba(201, 169, 97, 0.1);
    color: var(--color-white);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-primary);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 90px;
    overflow: hidden;
    padding: var(--spacing-xxl) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(44, 24, 16, 0.6) 50%, rgba(44, 24, 16, 0.85) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.15), transparent 60%);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-product {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-product img {
    max-width: 450px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
    animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-text {
    padding: var(--spacing-lg);
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--color-secondary);
    margin: var(--spacing-lg) 0;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.hero-description {
    color: var(--color-accent);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-secondary);
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-white), var(--color-accent));
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn:active {
    transform: translateY(-2px);
}

/* Featured Products */
.featured-products {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    position: relative;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--color-accent);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-md);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(44, 24, 16, 0.4));
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-info {
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-info h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
}

.product-price del {
    font-size: 0.7em;
    color: var(--color-text-light);
    margin-right: var(--spacing-xs);
}

/* Varieties Section */
.varieties-section {
    padding: 100px 0;
    background: var(--color-accent);
}

.varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.variety-item {
    text-align: center;
}

.variety-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.variety-circle span {
    color: var(--color-white);
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

.variety-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
}

.variety-circle:hover::before {
    width: 100%;
    height: 100%;
}

.variety-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

.variety-name {
    font-weight: bold;
    color: var(--color-primary);
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background: var(--color-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-item {
    text-align: center;
    padding: 30px;
}

.info-item h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.info-item img {
    max-width: 100%;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.info-item img:hover {
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 60px 0 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .primary-menu {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

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

    .varieties-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .variety-circle {
        width: 120px;
        height: 120px;
    }
}

/* Varieties Section */
.varieties-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-white) 100%);
    position: relative;
}

.varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.variety-item {
    text-align: center;
    transition: var(--transition-smooth);
}

.variety-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.variety-circle span {
    color: var(--color-white);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-transform: uppercase;
    z-index: 3;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}

.variety-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: var(--transition-slow);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.variety-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.variety-circle:hover::before {
    width: 120%;
    height: 120%;
}

.variety-circle:hover::after {
    opacity: 1;
}

.variety-circle:hover {
    transform: scale(1.15) translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.variety-name {
    font-weight: 700;
    color: var(--color-primary);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 0.5px;
    font-family: var(--font-secondary);
}

/* Info Section */
.info-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.info-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-accent);
    border-radius: 20px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.info-item h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--color-text);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.8;
}

.info-item img {
    max-width: 100%;
    border-radius: 15px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.info-item img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-black) 100%);
    color: var(--color-accent);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.footer-logo {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.footer-logo img {
    max-height: 80px;
    filter: brightness(1.2);
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-accent);
    transition: var(--transition-fast);
}

.contact-info p:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.contact-info i {
    color: var(--color-secondary);
    font-size: 1.2em;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--color-accent);
    font-size: 0.9rem;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, var(--color-accent) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Premium Effects Styles */

/* Custom cursor removed for better performance */

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-dark));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--color-secondary);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.quick-view-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-xl);
}

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.quick-view-close:hover {
    transform: rotate(90deg);
    background: var(--color-secondary);
    color: var(--color-white);
}

.quick-view-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-accent);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: var(--spacing-xl) auto;
}

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

/* Flying Cart Animation */
.flying-to-cart {
    animation: flyToCart 0.8s ease-in-out;
}

@keyframes flyToCart {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(0.5) rotate(180deg);
    }

    100% {
        transform: scale(0.1) rotate(360deg);
    }
}

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

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* Text Reveal Animation */
.reveal-text .word {
    display: inline-block;
    opacity: 0;
    animation: revealWord 0.6s forwards;
}

@keyframes revealWord {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(var(--float-distance, -20px));
    }
}

.floating-element {
    animation: float 3s ease-in-out infinite;
}

/* Image Zoom Effect */
.zoomable-image {
    overflow: hidden;
    border-radius: 15px;
    cursor: zoom-in;
}

.zoomable-image img {
    transition: transform 0.5s ease;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-accent);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.testimonial-slide.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.testimonial-slide p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-primary);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-md);
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: var(--color-accent-dark);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background: var(--color-secondary);
    transform: scale(1.3);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent);
    border-radius: 50%;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.newsletter-content p {
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.newsletter-form input::placeholder {
    color: var(--color-accent);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2);
}

.newsletter-form button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Stats Counter Section */
.stats-section {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--color-accent);
    border-radius: 15px;
    margin: var(--spacing-md) 0;
}

.social-proof-avatars {
    display: flex;
    margin-right: var(--spacing-sm);
}

.social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    margin-left: -10px;
}

.social-proof-avatar:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--color-text);
}

.social-proof-text strong {
    color: var(--color-primary);
    font-weight: 700;
}


/* Performance Optimizations for Cursor */
@media (hover: hover) and (pointer: fine) {

    .custom-cursor,
    .custom-cursor-follower {
        display: block;
    }
}

@media (hover: none) or (pointer: coarse) {

    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }

    body.custom-cursor-active,
    body.custom-cursor-active * {
        cursor: auto !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .custom-cursor,
    .custom-cursor-follower,
    .cursor-trail {
        display: none !important;
    }

    body.custom-cursor-active,
    body.custom-cursor-active * {
        cursor: auto !important;
    }
}

/* Magnetic Effect Enhancement */
.btn,
.product-card,
.variety-circle {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

html.smooth-scroll {
    scroll-behavior: auto;
}

/* Performance Mode */
body.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Scrolling State */
body.is-scrolling .custom-cursor-follower {
    opacity: 0.3;
}

/* High Performance Transforms */
.custom-cursor,
.custom-cursor-follower {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Cursor Glow Effect */
.custom-cursor-follower.cursor-hover {
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4),
        0 0 40px rgba(201, 169, 97, 0.2),
        inset 0 0 20px rgba(201, 169, 97, 0.1);
}

/* Interactive Feedback */
.btn:active,
.product-card:active {
    transform: scale(0.98) !important;
}

/* Cursor on Images */
img:hover~.custom-cursor-follower {
    border-color: var(--color-white);
}

/* Loading State Cursor */
body.loading .custom-cursor,
body.loading .custom-cursor-follower {
    animation: cursorLoading 1s ease-in-out infinite;
}

@keyframes cursorLoading {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ========================================
   PREMIUM 3D TILT EFFECTS
   ======================================== */

.tilt-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-3d-inner {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tilt-3d:hover .tilt-3d-inner {
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

/* Product Card 3D Enhanced */
.product-card {
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 20px;
    z-index: 10;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(-3deg) scale(1.03);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(201, 169, 97, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card .product-image {
    transform: translateZ(20px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-image {
    transform: translateZ(40px);
}

.product-card .product-info {
    transform: translateZ(30px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-info {
    transform: translateZ(50px);
}

/* ========================================
   ENHANCED BUTTON RIPPLE EFFECT
   ======================================== */

.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

/* Button Glow on Hover */
.btn-primary:hover,
.btn-secondary:hover {
    animation: pulseGlow 1.5s ease-in-out infinite;
}

/* ========================================
   GLASSMORPHISM ELEMENTS
   ======================================== */

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(44, 24, 16, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

/* ========================================
   ENHANCED NAVIGATION ANIMATION
   ======================================== */

.nav-menu li a {
    position: relative;
    overflow: hidden;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-white), var(--color-secondary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-menu li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
    animation: shimmerGold 2s linear infinite;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: -1;
}

.nav-menu li a:hover::after {
    width: 150%;
    height: 300%;
    opacity: 1;
}

/* ========================================
   ENHANCED HEADER SCROLL
   ======================================== */

.site-header {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header.scrolled {
    background: rgba(44, 24, 16, 0.98);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(201, 169, 97, 0.1);
    padding: 5px 0;
}

.site-header.scrolled .logo-container img {
    transform: scale(0.85);
}

.site-header.scrolled .nav-wrapper {
    padding: 12px 0;
}

/* ========================================
   COFFEE BEAN DECORATIONS
   ======================================== */

.coffee-bean-decoration {
    position: absolute;
    width: 30px;
    height: 45px;
    background: var(--color-primary);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: floatSlow 8s ease-in-out infinite;
    opacity: 0.1;
}

.coffee-bean-decoration::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    width: 2px;
    height: 40%;
    background: var(--color-primary-light);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ========================================
   ENHANCED VARIETY CIRCLES
   ======================================== */

.variety-circle {
    position: relative;
    overflow: visible;
}

.variety-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent,
            var(--color-secondary),
            transparent,
            var(--color-secondary),
            transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotate360 4s linear infinite;
    z-index: -1;
}

.variety-circle:hover::before {
    opacity: 0.6;
}

.variety-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
}

/* ========================================
   PARALLAX LAYERS
   ======================================== */

.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    will-change: transform;
    transition: transform 0.1s linear;
}

.parallax-layer-1 {
    --parallax-speed: 0.2;
}

.parallax-layer-2 {
    --parallax-speed: 0.4;
}

.parallax-layer-3 {
    --parallax-speed: 0.6;
}

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

.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(ellipse at center bottom,
            rgba(201, 169, 97, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

/* ========================================
   SCROLL-TRIGGERED SECTION REVEALS
   ======================================== */

.section-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
        transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-reveal.from-left {
    transform: translateX(-60px);
}

.section-reveal.from-left.revealed {
    transform: translateX(0);
}

.section-reveal.from-right {
    transform: translateX(60px);
}

.section-reveal.from-right.revealed {
    transform: translateX(0);
}

/* ========================================
   ENHANCED CART ICON
   ======================================== */

.cart-icon {
    position: relative;
}

.cart-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cart-icon:hover::before {
    opacity: 1;
    transform: scale(1);
}

.cart-bounce {
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   INTERACTIVE SHADOW
   ======================================== */

.interactive-shadow {
    position: relative;
}

.interactive-shadow::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent 70%);
    transform: scaleX(0.8);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
}

.interactive-shadow:hover::before {
    transform: scaleX(1) scaleY(0.8);
    opacity: 0.3;
}

/* ========================================
   GOLD ACCENT LINE DECORATIONS
   ======================================== */

.gold-line {
    position: relative;
}

.gold-line::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-secondary),
            var(--color-white),
            var(--color-secondary),
            transparent);
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gold-line:hover::before {
    width: 100%;
}

/* ========================================
   LOADING STATES ENHANCED
   ======================================== */

.skeleton-loading {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg,
            var(--color-accent) 0%,
            var(--color-accent-dark) 50%,
            var(--color-accent) 100%);
    background-size: 200% 100%;
    animation: shimmerGold 1.5s ease-in-out infinite;
}

.content-loading {
    position: relative;
}

.content-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: shimmerFlow 1.5s infinite;
}

/* ========================================
   MICRO-INTERACTIONS
   ======================================== */

/* Input Focus Effects */
input:focus,
textarea:focus {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(201, 169, 97, 0.3),
        0 0 20px rgba(201, 169, 97, 0.1);
    transition: box-shadow 0.3s ease;
}

/* Link Underline Animation */
.link-animated {
    position: relative;
    display: inline-block;
}

.link-animated::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.link-animated:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Icon Bounce on Hover */
.icon-bounce:hover i,
.icon-bounce:hover svg {
    animation: bounceIn 0.5s ease;
}

/* ========================================
   RESPONSIVE ANIMATION ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .product-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .product-card:hover .product-image,
    .product-card:hover .product-info {
        transform: translateZ(0);
    }

    .variety-circle:hover {
        transform: scale(1.1) translateY(-5px);
    }

    .section-reveal {
        transform: translateY(40px);
    }
}