/* ===================================
   KAV TASARIM - Main Stylesheet
   Modern Artistic Ceramic Workshop
   =================================== */

/* CSS Variables */
:root {
    --color-primary: #dc5c14;
    --color-primary-dark: #c45a15;
    --color-primary-light: #f5a066;
    --color-black: #1a1a1a;
    --color-dark: #2d2d2d;
    --color-gray: #6b6b6b;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-cream: #faf9f7;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Oswald', 'Futura PT Cond', 'Futura', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    --border-radius: 4px;
    --border-radius-lg: 12px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 200;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    cursor: none;
    letter-spacing: 0.02em;
}

/* Highlighted Text - Orange Futura Cond Light */
em,
.highlight {
    font-family: var(--font-body);
    font-style: normal;
    color: var(--color-primary);
    font-weight: 200;
}

/* Hide default cursor on interactive elements */
a,
button,
input,
textarea,
select,
.product-card,
.product-card-link,
.collection-card,
.gallery-item,
.product-image,
.quick-view-btn,
.products-grid,
[onclick] {
    cursor: none !important;
}

body.no-scroll {
    overflow: hidden;
}

body.scroll-locked {
    overflow: hidden;
}

/* Selection */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   PRELOADER
   =================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preloader-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Preloader Mobile Styles */
@media (max-width: 768px) {
    .preloader {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preloader-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preloader-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 52% center;
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* Mobile Hero - no parallax zoom, no horizontal scroll */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero {
        overflow: hidden;
    }

    .hero-bg {
        overflow: hidden;
    }

    .hero-bg-image {
        width: 100% !important;
        height: 100% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* ===================================
   CUSTOM CURSOR - Elegant Artistic Style
   =================================== */
.cursor {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-black);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.3s ease;
}

.cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cursor.hover {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1.5px solid var(--color-primary);
}

.cursor.hover::after {
    opacity: 1;
}

.cursor-follower {
    position: fixed;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.3s ease,
        border-radius 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.3s ease,
        opacity 0.3s ease;
    backdrop-filter: blur(1px);
}

.cursor-follower.hover {
    width: 64px;
    height: 64px;
    border-color: var(--color-primary);
    background: rgba(232, 111, 32, 0.05);
}

/* Text hover - cursor becomes a line */
.cursor.text-hover {
    width: 2px;
    height: 24px;
    border-radius: 1px;
    background: var(--color-primary);
}

.cursor-follower.text-hover {
    width: 2px;
    height: 32px;
    border-radius: 1px;
    border: none;
    background: rgba(232, 111, 32, 0.2);
}

/* Link hover - magnetic effect */
.cursor-follower.link-hover {
    width: 80px;
    height: 80px;
    border-color: var(--color-primary);
    background: rgba(232, 111, 32, 0.03);
    mix-blend-mode: normal;
}

/* Button hover - filled style */
.cursor.button-hover {
    width: 10px;
    height: 10px;
    background: var(--color-white);
    mix-blend-mode: difference;
}

.cursor-follower.button-hover {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border: none;
    mix-blend-mode: difference;
}

/* Gallery/Card hover - expand effect */
.cursor-follower.card-hover {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.cursor.card-hover::before {
    content: 'Görüntüle';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    white-space: nowrap;
    opacity: 1;
}

.cursor.card-hover {
    width: auto;
    height: auto;
    background: transparent;
    padding: 8px 12px;
    border-radius: 20px;
}

@media (max-width: 1024px) {

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

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    z-index: 1000;
    transition: all var(--transition-medium);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 35px;
    width: auto;
    transition: transform var(--transition-medium);
    margin-top: -6px;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav.scrolled .nav-logo img {
    height: 28px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
}

.nav.scrolled .nav-link {
    color: var(--color-black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition-medium);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-btn {
    position: relative;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.nav.scrolled .cart-btn {
    color: var(--color-black);
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.625rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-dropdown {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.lang-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.lang-dropdown.open .lang-toggle svg {
    transform: rotate(180deg);
}

.lang-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    overflow: hidden;
    z-index: 1000;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: var(--color-light);
}

.lang-option.active {
    background: var(--color-cream);
    color: var(--color-primary);
}

.lang-option .flag {
    font-size: 1rem;
}

.nav.scrolled .lang-toggle,
.nav.nav-dark .lang-toggle {
    color: var(--color-black);
    border-color: rgba(0, 0, 0, 0.2);
}

.nav.scrolled .lang-toggle:hover,
.nav.nav-dark .lang-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.nav.scrolled .menu-toggle span {
    background: var(--color-black);
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        padding: 1rem 1.5rem;
    }
}

/* Navigation Dark Mode (for light backgrounds like Spline) */
.nav.nav-dark .nav-link {
    color: var(--color-black);
}

.nav.nav-dark .cart-btn {
    color: var(--color-black);
}

.nav.nav-dark .menu-toggle span {
    background: var(--color-black);
}

/* Logo already has orange background, no filter needed */

/* Keep dark when scrolled too */
.nav.nav-dark.scrolled .nav-link,
.nav.nav-dark.scrolled .cart-btn,
.nav.nav-dark.scrolled .menu-toggle span {
    color: var(--color-black);
}

.nav.nav-dark.scrolled .menu-toggle span {
    background: var(--color-black);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-black);
    transition: color var(--transition-fast);
}

.mobile-link:hover {
    color: var(--color-primary);
}

/* ===================================
   CART SIDEBAR
   =================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

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

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-light);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.cart-close {
    color: var(--color-gray);
    transition: color var(--transition-fast);
}

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

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
}

.cart-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--color-gray);
}

.cart-empty p {
    font-size: 1rem;
}

.start-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.start-shopping-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-light);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: opacity var(--transition-fast);
}

.cart-item-link:hover .cart-item-image,
.cart-item-name-link:hover .cart-item-name {
    opacity: 0.7;
}

.cart-item-name-link {
    text-decoration: none;
    color: inherit;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--color-primary);
    font-weight: 500;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.cart-item-remove {
    color: var(--color-gray);
    font-size: 0.75rem;
    margin-top: 0.5rem;
    transition: color var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--color-primary);
}

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--color-light);
    display: none;
}

.cart-footer.has-items {
    display: block;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: background var(--transition-fast);
}

.checkout-btn:hover {
    background: var(--color-primary-dark);
}

/* ===================================
   SECTION INDICATORS
   =================================== */
.section-indicators {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border: 1px solid var(--color-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.indicator:hover {
    border-color: var(--color-primary);
}

.indicator.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .section-indicators {
        left: 1rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.5) 100%);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero.active .hero-bg-img {
    transform: scale(1);
}

/* Hero Background Parallax Image */
.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    height: 105%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    transition: transform 0.15s ease-out;
    z-index: 0;
    will-change: transform;
    image-rendering: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 0 2rem;
}

.hero-content-dark .hero-badge {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--color-dark);
}

.hero-content-dark .scroll-text {
    color: var(--color-dark);
}

.hero-content-dark .scroll-arrow {
    border-color: rgba(0, 0, 0, 0.3);
    color: var(--color-dark);
    background: rgba(0, 0, 0, 0.05);
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 200;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.title-line {
    display: block;
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.9em;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line.accent {
    font-family: var(--font-body);
    font-weight: 200;
    color: #ec7e36;
    font-style: normal;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.hero-badge {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

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

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
    z-index: 10;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.scroll-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: scrollBounce 2s ease-in-out infinite;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-arrow svg {
    animation: arrowMove 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        border-color: rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: translateY(10px);
        border-color: rgba(255, 255, 255, 0.7);
    }
}

@keyframes arrowMove {

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

    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

/* ===================================
   HERO EVENTS WIDGET
   =================================== */
.hero-events-widget {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 280px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--color-white);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-events-widget.visible {
    opacity: 1;
    pointer-events: auto;
}

.hero-events-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-events-header svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.hero-events-header span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.95);
}

.hero-events-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-event-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.625rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.hero-event-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.hero-event-date {
    min-width: 44px;
    text-align: center;
    padding: 0.375rem;
    background: rgba(236, 126, 54, 0.2);
    border-radius: 8px;
    flex-shrink: 0;
}

.hero-event-date .day {
    display: block;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-primary);
}

.hero-event-date .month {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.hero-event-info {
    flex: 1;
    min-width: 0;
}

.hero-event-info .title {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.hero-event-info .time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.hero-events-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.hero-events-more:hover {
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .hero-events-widget {
        position: static;
        transform: none;
        width: auto;
        max-width: 100%;
        margin-top: 1.5rem;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        transition: none;
    }

    .hero-events-header {
        display: none;
    }

    .hero-events-list {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hero-events-list::-webkit-scrollbar {
        display: none;
    }

    .hero-event-item {
        flex-shrink: 0;
        min-width: 160px;
        padding: 0.5rem;
    }

    .hero-event-item:hover {
        transform: none;
    }

    .hero-event-date {
        min-width: 38px;
        padding: 0.25rem;
    }

    .hero-event-date .day {
        font-size: 1rem;
    }

    .hero-event-info .title {
        font-size: 0.7rem;
    }

    .hero-event-info .time {
        font-size: 0.6rem;
    }

    .hero-events-more {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-events-widget {
        padding: 0.5rem 0.75rem;
    }

    .hero-event-item {
        min-width: 140px;
    }

    .hero-event-date .day {
        font-size: 0.9rem;
    }

    .hero-event-date .month {
        font-size: 0.5rem;
    }

    .hero-event-info .title {
        font-size: 0.65rem;
    }
}

@media (max-width: 1280px) and (min-width: 1025px) {
    .hero-events-widget {
        right: 24px;
        width: 250px;
        padding: 1.25rem;
    }

    .hero-event-info .title {
        font-size: 0.75rem;
    }
}

/* ===================================
   SECTION COMMON
   =================================== */
.section {
    min-height: 100vh;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-text {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .scroll-arrow {
        width: 38px;
        height: 38px;
    }

    .scroll-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-black);
    border: 1.5px solid var(--color-black);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.view-all-btn:hover {
    background: var(--color-black);
    color: var(--color-white);
    gap: 0.75rem;
}

.view-all-btn svg {
    transition: transform var(--transition-fast);
}

.view-all-btn:hover svg {
    transform: translateX(4px);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: var(--color-cream);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-visual:hover .about-image {
    transform: scale(1.05);
}

.about-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    opacity: 0.1;
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-content {
    padding-right: 2rem;
}

.about-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.about-title em {
    color: var(--color-primary);
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light);
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
}

.feature-text {
    font-size: 0.875rem;
    color: var(--color-gray);
    text-transform: none;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-features {
        gap: 2rem;
    }
}

/* ===================================
   COLLECTIONS SECTION
   =================================== */
.collections {
    background: var(--color-white);
}

.collections-header {
    text-align: center;
    margin-bottom: 4rem;
}

.collections-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
}

.collection-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.collection-count {
    color: var(--color-white);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-medium);
}

.collection-card:hover .collection-count {
    opacity: 1;
    transform: translateY(0);
}

.collection-info {
    padding: 2rem;
    background: var(--color-white);
}

.collection-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.collection-info p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: gap var(--transition-fast);
}

.collection-link:hover {
    gap: 1rem;
}

@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .collection-image {
        height: 350px;
    }
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    background: var(--color-cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.gallery-title em {
    color: var(--color-primary);
}

.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-align: center;
    padding: 0 1rem;
}

@media (max-width: 1024px) {
    .gallery-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 350px;
    }
}

@media (max-width: 600px) {
    .gallery-showcase {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }
}

/* ===================================
   SHOP SECTION
   =================================== */
.shop {
    background: var(--color-white);
}

.shop-header {
    text-align: center;
    margin-bottom: 4rem;
}

.shop-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    border: 1px solid var(--color-light);
    border-radius: 30px;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: none;
}

.product-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--color-light);
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: none;
    border-radius: 20px;
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-medium);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: none;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

.add-to-cart {
    padding: 0.75rem 1.25rem;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    border-radius: var(--border-radius);
    transition: background var(--transition-fast);
}

.add-to-cart:hover {
    background: var(--color-primary);
}

.shop-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light);
}

.shop-cta p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: background var(--transition-fast);
}

.cta-btn:hover {
    background: var(--color-primary-dark);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .product-image {
        height: 250px;
    }
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    background: var(--color-black);
    color: var(--color-white);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header .section-label {
    color: var(--color-primary-light);
}

.process-header .section-label::before {
    background: var(--color-primary-light);
}

.process-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.process-title em {
    color: var(--color-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-medium);
}

.process-step:hover {
    border-color: var(--color-primary);
    background: rgba(232, 111, 32, 0.05);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background: var(--color-cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.contact-title em {
    color: var(--color-primary);
}

.contact-text {
    color: var(--color-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-item span {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: none;
    letter-spacing: 0.1em;
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    font-family: inherit;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid var(--color-light);
    background: transparent;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1rem;
    color: var(--color-gray);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--color-primary-dark);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    margin-left: -10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===================================
   ANIMATIONS & SCROLL EFFECTS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger.active>*:nth-child(7) {
    transition-delay: 0.7s;
}

.stagger.active>*:nth-child(8) {
    transition-delay: 0.8s;
}

.stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax */
.parallax {
    will-change: transform;
}

/* Image Loading */
.img-loading {
    background: linear-gradient(90deg,
            var(--color-light) 0%,
            var(--color-cream) 50%,
            var(--color-light) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ===================================
   UTILITIES
   =================================== */
.text-primary {
    color: var(--color-primary);
}

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

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Tablet and below - 768px */
@media (max-width: 768px) {

    /* Hero Section Mobile */
    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero-scroll {
        bottom: 2rem;
    }

    .hero-scroll span {
        font-size: 0.625rem;
    }

    /* About Section Mobile */
    .about-features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .feature {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 140px;
    }

    .feature-number {
        font-size: 2rem;
    }

    .about-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .about-text {
        font-size: 1rem;
    }

    /* Collections Mobile */
    .collections-header {
        margin-bottom: 2.5rem;
    }

    .collection-info {
        padding: 1.5rem;
    }

    .collection-info h3 {
        font-size: 1.5rem;
    }

    /* Gallery Mobile */
    .gallery-header {
        margin-bottom: 2.5rem;
    }

    /* Shop Section Mobile */
    .shop-header {
        margin-bottom: 2.5rem;
    }

    .shop-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    /* Process Section Mobile */
    .process-header {
        margin-bottom: 2.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    /* Contact Section Mobile */
    .contact-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .contact-text {
        margin-bottom: 2rem;
    }

    .contact-details {
        gap: 1rem;
    }

    /* Section Indicators Mobile */
    .section-indicators {
        left: 0.5rem;
        gap: 0.75rem;
    }

    /* View All Button Mobile */
    .view-all-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* Small devices - 600px */
@media (max-width: 600px) {

    /* Navigation */
    .nav {
        padding: 0.875rem 1rem;
    }

    .nav.scrolled {
        padding: 0.75rem 1rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav.scrolled .nav-logo img {
        height: 35px;
    }

    /* Mobile Menu */
    .mobile-link {
        font-size: 2rem;
    }

    /* Hero */
    .hero-content {
        padding: 0 1rem;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    /* About */
    .about-image {
        height: 300px;
    }

    .about-accent {
        width: 120px;
        height: 120px;
        bottom: -1rem;
        right: -1rem;
    }

    /* Collections */
    .collection-image {
        height: 280px;
    }

    .collection-info p {
        font-size: 0.875rem;
    }

    /* Gallery */
    .gallery-showcase {
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item.large {
        height: 280px;
    }

    /* Shop */
    .shop-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        text-align: center;
    }

    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .add-to-cart {
        width: 100%;
        text-align: center;
    }

    /* Process */
    .process-step {
        padding: 1.25rem;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.8125rem;
    }
}

/* Extra small devices - 480px */
@media (max-width: 480px) {

    /* CSS Variables adjustment for small screens */
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
    }

    /* Section padding */
    .section {
        padding: 3rem 1rem;
    }

    /* Section Label */
    .section-label {
        font-size: 0.6875rem;
        padding-left: 2rem;
    }

    .section-label::before {
        width: 1.5rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
    }

    .hero-badge {
        margin-top: 1.5rem;
        padding: 0.5rem 0.875rem;
        font-size: 0.6875rem;
    }

    /* About */
    .about-container {
        gap: 2rem;
    }

    .about-image {
        height: 250px;
    }

    .about-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .about-text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .about-features {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .feature {
        flex: 1 1 100%;
    }

    /* Collections */
    .collections-title {
        font-size: 1.75rem;
    }

    .collection-image {
        height: 220px;
    }

    .collection-info {
        padding: 1.25rem;
    }

    .collection-info h3 {
        font-size: 1.25rem;
    }

    /* Gallery */
    .gallery-title {
        font-size: 1.75rem;
    }

    .gallery-item {
        height: 180px;
    }

    .gallery-item.large {
        height: 240px;
    }

    .gallery-item-overlay span {
        font-size: 1rem;
    }

    /* Shop */
    .shop-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-name {
        font-size: 1.125rem;
    }

    .product-price {
        font-size: 1.125rem;
    }

    /* Process */
    .process-title {
        font-size: 1.75rem;
    }

    .step-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .step-content h3 {
        font-size: 1.125rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }

    /* Contact */
    .contact-title {
        font-size: 1.75rem;
    }

    .contact-text {
        font-size: 0.9375rem;
    }

    .contact-item p,
    .contact-item a {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 0.875rem 0;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    /* Footer */
    .footer-logo {
        height: 35px;
    }

    .footer-brand p {
        font-size: 0.8125rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    /* Section Indicators - hide on very small screens */
    .section-indicators {
        display: none;
    }

    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
    }

    .cart-header {
        padding: 1rem 1.25rem;
    }

    .cart-items {
        padding: 1rem 1.25rem;
    }

    .cart-footer {
        padding: 1rem 1.25rem;
    }

    /* View All Button */
    .view-all-btn {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Increase touch targets */
    .nav-link {
        padding: 0.75rem 0;
    }

    .filter-btn {
        min-height: 44px;
    }

    .action-btn {
        width: 48px;
        height: 48px;
    }

    .add-to-cart {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }

    .submit-btn {
        min-height: 52px;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    /* Remove hover effects that don't work on touch */
    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    /* Make collection count always visible on touch */
    .collection-count {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* ===================================
   SHOPIER MODE - Sepet Devre Dışı
   =================================== */

/* Sepet butonunu gizle */
.cart-btn,
.cart-sidebar,
.cart-overlay {
    display: none !important;
}

/* Satın Al butonu stilleri */
.buy-now-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.buy-now-btn:hover {
    background: var(--color-primary-dark, #1a1a1a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Google Maps Link */
.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 25px;
    transition: all var(--transition-fast);
}

.maps-link:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.maps-link svg {
    flex-shrink: 0;
    stroke: var(--color-white);
}

.about-maps {
    margin: 0;
    align-self: center;
}

.contact-item .maps-link {
    margin-top: 1.25rem;
}