@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Hazelnut & Premium Theme Colors */
    --findik-dark: #3e2723;
    /* Deep roasted hazelnut */
    --findik-main: #8d6e63;
    /* Hazelnut shell */
    --findik-light: #d7ccc8;
    /* Inner hazelnut */
    --findik-gold: #fbc02d;
    /* Premium gold */
    --findik-bg: #fafafa;
    /* Clean cream background */
    --findik-text: #4e342e;
    /* Text color */

    --findik-radius: 16px;
    --findik-shadow: 0 10px 30px rgba(62, 39, 35, 0.08);
    --findik-shadow-hover: 0 15px 40px rgba(62, 39, 35, 0.15);

    --font-primary: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--findik-bg);
    color: var(--findik-text);
}

/* Header & Nav */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--findik-light);
}

.nav-link {
    font-weight: 500;
    color: var(--findik-dark) !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--findik-main) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--findik-main);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--findik-main), var(--findik-dark));
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    box-shadow: var(--findik-shadow);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--findik-shadow-hover);
    background: linear-gradient(135deg, var(--findik-dark), var(--findik-main));
}

.btn-outline-premium {
    border: 2px solid var(--findik-main);
    color: var(--findik-main);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: var(--findik-main);
    color: #fff;
}

/* Cards */
.product-card {
    background: #fff;
    border-radius: var(--findik-radius, 16px);
    border: 1px solid var(--findik-light, rgba(0, 0, 0, 0.08));
    box-shadow: var(--findik-shadow, 0 4px 16px rgba(0, 0, 0, 0.04));
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--findik-main, #3b82f6);
}

.product-card {
    background: #ffffff;
    border-radius: 20px !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(22, 101, 52, 0.3) !important;
}

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    height: 200px !important;
    max-height: 200px !important;
    aspect-ratio: 4 / 3 !important;
    background: #f8fafc !important;
    padding: 0 !important;
    border-radius: 18px 18px 0 0 !important;
}

.product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Horizontal Swipe Slide Track */
.product-card__slider-track {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: transform;
}

.product-card__slide {
    min-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.product-card__slide .product-card__img,
.product-card__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* Image Dots Switcher Bar */
.product-card__img-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card:hover .product-card__img-dots {
    opacity: 1;
}

.product-card__img-dots .img-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card__img-dots .img-dot.active,
.product-card__img-dots .img-dot:hover {
    background: #10b981;
    width: 14px;
    border-radius: 10px;
    transform: scale(1.1);
}

/* Card Image Navigation Arrows */
.card-img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-img-prev {
    left: 8px;
}

.card-img-next {
    right: 8px;
}

.product-card:hover .card-img-nav {
    opacity: 1;
}

.card-img-nav:hover {
    background: #166534;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

margin: 0 !important;

.product-card__image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 !important;
    margin: 0 !important;
}

.product-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

.product-card__body {
    padding: 1.15rem 1.15rem 1.15rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
    background: #ffffff !important;
    flex: 1;
    justify-content: space-between;
}

.product-title,
.product-card__title {
    margin: 0 !important;
    font-size: 1.12rem !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em !important;
}

.product-title a,
.product-card__title a {
    color: #0f172a !important;
    text-decoration: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 2.7em !important;
    transition: color 0.2s ease !important;
}

.product-title a:hover,
.product-card__title a:hover {
    color: #166534 !important;
}

/* Premium High Impact Price Box Pill */
.product-card__price-box {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #f8fafc !important;
    padding: 0.55rem 0.85rem !important;
    border-radius: 12px !important;
    border: 1px solid #f1f5f9 !important;
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.product-card__price-main {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.product-price,
.product-card__price-current {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    color: #166534 !important;
    letter-spacing: -0.02em !important;
}

.product-card__price-current .currency-label,
.product-card__price-current small {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #166534 !important;
    margin-left: 2px !important;
}

.product-card__price-old {
    font-size: 0.92rem !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    font-weight: 600 !important;
}

/* Seamless Cart Action Control Bar */
.product-card__cart-area {
    display: flex !items-center !important;
    gap: 0.6rem !important;
    margin-top: 0.4rem !important;
}

.product-card__qty {
    display: inline-flex !important;
    align-items: center !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 2px 4px !important;
    height: 44px !important;
}

.product-card__qty .qty-btn {
    border: none !important;
    background: transparent !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 10px !important;
    color: #334155 !important;
    font-size: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease, color 0.2s ease !important;
}

.product-card__qty .qty-btn:hover {
    background: #cbd5e1 !important;
    color: #0f172a !important;
}

.product-card__qty .qty-input {
    width: 32px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    color: #0f172a !important;
}

.product-card__cart-btn {
    flex: 1 !important;
    height: 44px !important;
    border: none !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.3px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0 0.85rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25) !important;
    white-space: nowrap !important;
}

.product-card__cart-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.4) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fff, var(--findik-light));
    padding: 60px 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--findik-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--findik-text);
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--findik-dark);
    color: var(--findik-light);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer a {
    color: var(--findik-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--findik-gold);
}