/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --color-primary: #1a472a;
    --color-primary-light: #2d5a3d;
    --color-primary-dark: #0f3018;
    --color-secondary: #c9a962;
    --color-secondary-light: #d4b97a;
    --color-secondary-dark: #b8924a;
    --color-cream: #faf5eb;
    --color-cream-light: #fdfbf7;
    --color-cream-dark: #f0e8d8;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-overlay: rgba(26, 71, 42, 0.85);
    --color-overlay-dark: rgba(0, 0, 0, 0.7);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Header */
    --header-height: 80px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.light {
    color: var(--color-white) !important;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4), 0 0 0 0 rgba(201, 169, 98, 0.7);
    }
    50% {
        box-shadow: 0 4px 25px rgba(201, 169, 98, 0.6), 0 0 20px 5px rgba(201, 169, 98, 0.3);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn i {
    font-size: 1rem;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.5);
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary));
}

.btn--secondary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.4);
}

.btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 71, 42, 0.5);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.btn--animated {
    animation: glowPulse 2s ease-in-out infinite;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border: 2px solid var(--color-secondary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.btn--animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn--animated:hover::before {
    width: 300px;
    height: 300px;
}

.btn--animated:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.7);
    border-color: var(--color-secondary-light);
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.header.scrolled .nav__link {
    color: var(--color-dark);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
    color: var(--color-secondary);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    z-index: 1001;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: var(--spacing-md);
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--spacing-xs) var(--spacing-sm);
    position: relative;
    transition: all var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 80%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-secondary);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--color-white);
    cursor: pointer;
    z-index: 1001;
}

.header.scrolled .nav__toggle {
    color: var(--color-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/hero_background_1769888917099.png') center/cover no-repeat fixed;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.hero__subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__description {
    font-size: 1.2rem;
    color: var(--color-cream);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-full);
    color: var(--color-white);
    animation: bounce 2s infinite;
    transition: all var(--transition-base);
}

.scroll-down:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section__subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.section__divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
    margin: 0 auto;
    border-radius: var(--radius-sm);
}

.section__description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
}

/* ===== POBŪVIAI SECTION ===== */
.pobuviai {
    background: var(--color-cream-light);
}

.pobuviai__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.pobuviai__text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

.pobuviai__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

.pobuviai__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.pobuviai__image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
    opacity: 0.2;
    z-index: 1;
}

.pobuviai__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.pobuviai__image:hover img {
    transform: scale(1.05);
}

/* ===== SALES SECTION ===== */
.sales {
    background: url('img/481108613_1172919861295348_1685836504741695619_n.jpg') center/cover no-repeat fixed;
    position: relative;
}

.sales__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
}

.sales .container {
    position: relative;
    z-index: 1;
}

.sales__intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: var(--spacing-xl);
}

.sales__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.sale-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.sale-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.sale-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sale-card__icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.sale-card__title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.sale-card__capacity {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.sale-card__desc {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.sales__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.sales__gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.sales__gallery img:hover {
    transform: scale(1.02);
}

/* ===== GEDULINGI SECTION ===== */
.gedulingi {
    background: var(--color-cream-light);
}

.gedulingi__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.gedulingi__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gedulingi__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gedulingi__image:hover img {
    transform: scale(1.05);
}

.gedulingi__text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

.gedulingi__services {
    margin: var(--spacing-lg) 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
}

.service-item i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.service-item span {
    font-weight: 500;
}

/* ===== SUMUŠTINIAI SECTION ===== */
.sumustiniai {
    background: url('img/canapes_food_1769888854875.png') center/cover no-repeat fixed;
    position: relative;
}

.sumustiniai__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
}

.sumustiniai .container {
    position: relative;
    z-index: 1;
}

.sumustiniai__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.sumustiniai__text {
    color: var(--color-white);
}

.sumustiniai__text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

.sumustiniai__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--color-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.sumustiniai__badge i {
    font-size: 1.2rem;
}

.sumustiniai__badge span {
    font-weight: 600;
}

.sumustiniai__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sumustiniai__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sumustiniai__image:hover img {
    transform: scale(1.05);
}

.sumustiniai__examples {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.example-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: var(--color-white);
    transition: all var(--transition-base);
}

.example-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.example-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.example-item span {
    font-size: 0.9rem;
}

/* ===== KONDITERIJA SECTION ===== */
.konditerija {
    background: var(--color-cream-light);
}

.konditerija__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.konditerija__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.konditerija__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.konditerija__image:hover img {
    transform: scale(1.05);
}

.konditerija__text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

.konditerija__highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.konditerija__highlight h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.konditerija__highlight h3 i {
    color: var(--color-secondary);
}

.konditerija__products {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.product-tag {
    background: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-tag:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ===== APIE MUS SECTION ===== */
.apie {
    background: url('img/71590559_1760791277398405_6217614830598094848_n.jpg') center/cover no-repeat fixed;
    position: relative;
}

.apie__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
}

.apie .container {
    position: relative;
    z-index: 1;
}

.apie__content {
    max-width: 900px;
    margin: 0 auto;
}

.apie__text {
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.apie__text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.9;
}

.apie__lunch {
    background: var(--color-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.apie__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALERIJA SECTION ===== */
.galerija {
    background: var(--color-cream-light);
}

.galerija__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item__overlay i {
    font-size: 2rem;
    color: var(--color-white);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

/* ===== GALERIJA SLIDER ===== */
.slider-wrapper {
    width: 100%;
    overflow: hidden;
    margin: var(--spacing-lg) 0;
    position: relative;
}

.slider-wrapper::before,
.slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-cream-light), transparent);
}

.slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-cream-light), transparent);
}

.slider {
    position: relative;
    width: 100%;
}

.slider__track {
    display: flex;
    gap: var(--spacing-md);
    width: max-content;
}

/* Left to Right animation */
.slider--ltr .slider__track {
    animation: slideLeftToRight 40s linear infinite;
}

/* Right to Left animation */
.slider--rtl .slider__track {
    animation: slideRightToLeft 40s linear infinite;
}

.slider:hover .slider__track {
    animation-play-state: paused;
}

.slider__item {
    flex-shrink: 0;
    width: 350px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.slider__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.slider__item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.slider__item:hover::after {
    opacity: 1;
}

.slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.slider__item:hover img {
    transform: scale(1.1);
}

@keyframes slideLeftToRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive slider items */
@media (max-width: 768px) {
    .slider__item {
        width: 280px;
        height: 220px;
    }

    .slider-wrapper::before,
    .slider-wrapper::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .slider__item {
        width: 240px;
        height: 180px;
    }
}

/* ===== KONTAKTAI SECTION ===== */
.kontaktai {
    background: var(--color-cream);
}

.kontaktai__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.kontaktai__info {
    display: grid;
    gap: var(--spacing-md);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card__icon i {
    font-size: 1.2rem;
    color: var(--color-white);
}

.info-card__content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.info-card__content p {
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.info-card__content a {
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.info-card__content a:hover {
    color: var(--color-secondary);
}

.info-card__note {
    font-size: 0.85rem;
    color: var(--color-secondary) !important;
    font-style: italic;
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    background: var(--color-cream-light);
    color: var(--color-text);
    transition: all var(--transition-base);
}

.form-group textarea {
    padding-left: 1rem;
    resize: vertical;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.form-group:has(textarea) i {
    display: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: var(--color-white);
}

.form-group input:focus+i,
.form-group select:focus+i {
    color: var(--color-secondary);
}

/* Map */
.kontaktai__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.kontaktai__map iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-cream);
    padding: var(--spacing-xxl) 0 0;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    height: 80px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer__brand p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer h4 {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.footer__links ul li {
    margin-bottom: var(--spacing-xs);
}

.footer__links a {
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer__contact p,
.footer__hours p {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    opacity: 0.8;
}

.footer__contact i,
.footer__hours i {
    color: var(--color-secondary);
    width: 20px;
}

.footer__contact a:hover {
    color: var(--color-secondary);
}

.footer__note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-secondary);
    opacity: 1 !important;
}

.footer__rekvizitai {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__rekvizitai h4 {
    margin-bottom: var(--spacing-md);
}

.rekvizitai__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    opacity: 0.8;
}

.rekvizitai__grid p {
    font-size: 0.9rem;
}

.footer__bottom {
    padding: var(--spacing-lg) 0;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-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-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.lightbox__close:hover {
    transform: rotate(90deg);
    background: var(--color-white);
    color: var(--color-dark);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {

    .pobuviai__content,
    .gedulingi__content,
    .sumustiniai__content,
    .konditerija__content,
    .kontaktai__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .sales__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apie__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .sumustiniai__examples {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }

    .rekvizitai__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --spacing-xxl: 4rem;
    }

    /* Mobile Logo - Bigger and Centered */
    .nav {
        justify-content: center;
        position: relative;
    }

    .nav__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-img {
        height: 120px;
    }

    .nav__toggle {
        position: absolute;
        right: var(--container-padding);
    }

    /* Mobile Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(15, 48, 24, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px var(--spacing-lg) var(--spacing-lg);
        flex-direction: column;
        transition: right var(--transition-base);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav__link {
        display: block;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--color-white);
        transition: all var(--transition-base);
    }

    .nav__link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: calc(var(--spacing-md) + 10px);
    }

    .nav__link::after {
        display: none;
    }

    .nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
        color: var(--color-white);
        border-radius: var(--radius-full);
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
        cursor: pointer;
        transition: all var(--transition-base);
        font-size: 1.2rem;
    }

    .nav__close:hover {
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 6px 20px rgba(201, 169, 98, 0.6);
    }

    .nav__toggle {
        display: flex;
    }

    /* Sections */
    .sales__grid {
        grid-template-columns: 1fr;
    }

    .sales__gallery {
        grid-template-columns: 1fr;
    }

    .galerija__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apie__stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .footer__contact p,
    .footer__hours p {
        justify-content: center;
    }

    .rekvizitai__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pobuviai__features {
        grid-template-columns: 1fr;
    }

    .sumustiniai__examples {
        grid-template-columns: 1fr;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    .galerija__grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .sale-card {
        padding: var(--spacing-lg);
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-card__icon {
        margin: 0 auto;
    }

    .contact-form {
        padding: var(--spacing-lg);
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .header,
    .hero__scroll,
    .scroll-top,
    .lightbox {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    body {
        background: white;
    }
}

/ *   = = = = =   M E N I U   S E C T I O N   = = = = =   * /     . m e n i u - s e c t i o n    {
                 b a c k g r o u n d :    v a r ( - - c o l o r - w h i t e ) ;
                 t e x t - a l i g n :    c e n t e r ;
         
}

         . m e n i u - w r a p p e r    {
                 m a x - w i d t h :    8 0 0 p x ;
                 m a r g i n :    0   a u t o ;
                 p a d d i n g :    v a r ( - - s p a c i n g - m d ) ;
                 b a c k g r o u n d :    v a r ( - - c o l o r - w h i t e ) ;
                 b o r d e r - r a d i u s :    v a r ( - - r a d i u s - l g ) ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - x l ) ;
                 b o r d e r :    1 p x   s o l i d   v a r ( - - c o l o r - c r e a m - d a r k ) ;
         
}

         . m e n i u - i m g    {
                 w i d t h :    1 0 0 % ;
                 h e i g h t :    a u t o ;
                 b o r d e r - r a d i u s :    v a r ( - - r a d i u s - m d ) ;
                 d i s p l a y :    b l o c k ;
                 c u r s o r :    p o i n t e r ;
                 t r a n s i t i o n :    t r a n s f o r m   v a r ( - - t r a n s i t i o n - b a s e ) ;
         
}

         . m e n i u - i m g : h o v e r    {
                 t r a n s f o r m :    s c a l e ( 1 . 0 2 ) ;
         
}

         . m e n i u - d o w n l o a d    {
                 m a r g i n - t o p :    v a r ( - - s p a c i n g - l g ) ;
         
}

     / *   = = = = =   T E X T   M E N U   I T E M S   = = = = =   * /     . m e n u - g r i d    {
                 d i s p l a y :    g r i d ;
                 g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( a u t o - f i t ,    m i n m a x ( 3 5 0 p x ,    1 f r ) ) ;
                 g a p :    v a r ( - - s p a c i n g - l g ) ;
                 m a r g i n - t o p :    v a r ( - - s p a c i n g - l g ) ;
         
}

         . m e n u - c a t e g o r y    {
                 b a c k g r o u n d :    v a r ( - - c o l o r - w h i t e ) ;
                 p a d d i n g :    v a r ( - - s p a c i n g - l g ) ;
                 b o r d e r - r a d i u s :    v a r ( - - r a d i u s - l g ) ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - m d ) ;
                 t r a n s i t i o n :    t r a n s f o r m   v a r ( - - t r a n s i t i o n - b a s e ) ;
                 b o r d e r :    1 p x   s o l i d   r g b a ( 0 ,    0 ,    0 ,    0 . 0 5 ) ;
         
}

         . m e n u - c a t e g o r y : h o v e r    {
                 t r a n s f o r m :    t r a n s l a t e Y ( - 5 p x ) ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - l g ) ;
         
}

         . m e n u - c a t e g o r y _ _ h e a d e r    {
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 g a p :    v a r ( - - s p a c i n g - s m ) ;
                 m a r g i n - b o t t o m :    v a r ( - - s p a c i n g - m d ) ;
                 p a d d i n g - b o t t o m :    v a r ( - - s p a c i n g - s m ) ;
                 b o r d e r - b o t t o m :    2 p x   s o l i d   v a r ( - - c o l o r - s e c o n d a r y - l i g h t ) ;
         
}

         . m e n u - c a t e g o r y _ _ i c o n    {
                 w i d t h :    4 0 p x ;
                 h e i g h t :    4 0 p x ;
                 b a c k g r o u n d :    v a r ( - - c o l o r - c r e a m ) ;
                 c o l o r :    v a r ( - - c o l o r - s e c o n d a r y ) ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 f o n t - s i z e :    1 . 2 r e m ;
         
}

         . m e n u - c a t e g o r y _ _ t i t l e    {
                 f o n t - f a m i l y :    v a r ( - - f o n t - h e a d i n g ) ;
                 f o n t - s i z e :    1 . 5 r e m ;
                 c o l o r :    v a r ( - - c o l o r - p r i m a r y ) ;
                 m a r g i n :    0 ;
         
}

         . m e n u - l i s t    {
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 g a p :    1 r e m ;
         
}

         . m e n u - i t e m    {
                 d i s p l a y :    f l e x ;
                 j u s t i f y - c o n t e n t :    s p a c e - b e t w e e n ;
                 a l i g n - i t e m s :    f l e x - s t a r t ;
         
}

         . m e n u - i t e m _ _ d e t a i l s    {
                 f l e x :    1 ;
                 p a d d i n g - r i g h t :    1 r e m ;
         
}

         . m e n u - i t e m _ _ h e a d e r    {
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    b a s e l i n e ;
                 w i d t h :    1 0 0 % ;
         
}

         . m e n u - i t e m _ _ n a m e    {
                 f o n t - w e i g h t :    6 0 0 ;
                 c o l o r :    v a r ( - - c o l o r - d a r k ) ;
                 f o n t - s i z e :    1 . 0 5 r e m ;
                 b a c k g r o u n d :    v a r ( - - c o l o r - w h i t e ) ;
                 p a d d i n g - r i g h t :    0 . 5 r e m ;
                 z - i n d e x :    1 ;
         
}

         . m e n u - i t e m _ _ d o t s    {
                 f l e x :    1 ;
                 b o r d e r - b o t t o m :    2 p x   d o t t e d   # e 0 e 0 e 0 ;
                 m a r g i n - b o t t o m :    5 p x ;
         
}

         . m e n u - i t e m _ _ d e s c    {
                 f o n t - s i z e :    0 . 8 5 r e m ;
                 c o l o r :    v a r ( - - c o l o r - t e x t - l i g h t ) ;
                 m a r g i n - t o p :    0 . 2 r e m ;
                 f o n t - s t y l e :    i t a l i c ;
         
}

         . m e n u - i t e m _ _ p r i c e    {
                 f o n t - w e i g h t :    7 0 0 ;
                 c o l o r :    v a r ( - - c o l o r - s e c o n d a r y - d a r k ) ;
                 f o n t - s i z e :    1 . 1 r e m ;
                 w h i t e - s p a c e :    n o w r a p ;
                 p a d d i n g - l e f t :    0 . 5 r e m ;
         
}

         @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )    {
                 . m e n u - g r i d    {
                             g r i d - t e m p l a t e - c o l u m n s :    1 f r ;
                     
    }

         
}

     / *   S e c t i o n   I c o n s   * /     . s e c t i o n _ _ i c o n    {
                 f o n t - s i z e :    2 . 5 r e m ;
                 c o l o r :    v a r ( - - c o l o r - s e c o n d a r y ) ;
                 m a r g i n - b o t t o m :    v a r ( - - s p a c i n g - s m ) ;
                 d i s p l a y :    b l o c k ;
         
}

         / *   N a v   M e n u   I c o n s   * /     . n a v _ _ l i n k   i    {
                 m a r g i n - r i g h t :    5 p x ;
                 f o n t - s i z e :    0 . 9 e m ;
         
}

         / *   F o r m   D a t e / T i m e   * /     i n p u t [ t y p e = " d a t e "  ] ,
     i n p u t [ t y p e = " t i m e "  ]    {
                 w i d t h :    1 0 0 % ;
                 p a d d i n g :    1 r e m ;
                 p a d d i n g - l e f t :    3 r e m ;
                 b a c k g r o u n d :    v a r ( - - c o l o r - c r e a m - l i g h t ) ;
                 b o r d e r :    1 p x   s o l i d   t r a n s p a r e n t ;
                 b o r d e r - r a d i u s :    v a r ( - - r a d i u s - m d ) ;
                 o u t l i n e :    n o n e ;
                 t r a n s i t i o n :    a l l   v a r ( - - t r a n s i t i o n - f a s t ) ;
         
}

         i n p u t [ t y p e = " d a t e "  ] : f o c u s ,
     i n p u t [ t y p e = " t i m e "  ] : f o c u s    {
                 b o r d e r - c o l o r :    v a r ( - - c o l o r - s e c o n d a r y ) ;
                 b a c k g r o u n d :    v a r ( - - c o l o r - w h i t e ) ;
                 b o x - s h a d o w :    0   0   0   3 p x   r g b a ( 2 0 1 ,    1 6 9 ,    9 8 ,    0 . 1 ) ;
         
}

     