/* Meyvis - Gaspard Inspired Minimal Design */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a12221;
    --secondary: #a12221;
    --dark: #75655c;
    --light: #F5F5DC;
    --text: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --bg: #FDFCFA;
    --spacing: 1.5rem;
    
    /* Legacy support */
    --primary-color: #a12221;
    --secondary-color: #a12221;
    --dark-color: #75655c;
    --light-color: #F5F5DC;
    --text-color: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-color: transparent;
    --shadow: none;
    --shadow-lg: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.8;
    background: var(--white);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-x: hidden;
}

/* Hide scrollbar for all browsers */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transform: translateY(0);
    transition: transform 0.4s ease-out;
    will-change: transform;
    pointer-events: auto;
    visibility: visible;
}

.preloader.show {
    display: flex;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.preloader.hidden {
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 320px;
    height: auto;
    max-width: 90%;
    animation: preloaderLogoAnimation 1.5s ease-out forwards;
    opacity: 0;
    animation-fill-mode: both;
}

@keyframes preloaderLogoAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1.15) translateY(0);
    }
}

@keyframes preloaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header Styles - Minimal, No Borders */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 20px 0;
    border-bottom: none;
    box-shadow: none;
}

.main-header.visible {
    transform: translateY(0);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: auto;
}

.logo-text,
.logo-semi {
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-text {
    display: block;
    height: 35px;
}

.logo-semi {
    display: none;
    height: 60px;
    min-width: 60px;
}

.main-header.scrolled .logo-text {
    display: none;
}

.main-header.scrolled .logo-semi {
    display: block;
}

.main-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
    transform-origin: bottom;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    height: calc(100% + 10px);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-account-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.user-account-link:hover {
    color: var(--primary-color);
}

.user-account-link svg {
    width: 20px;
    height: 20px;
}

.user-name {
    font-weight: 500;
}

.logout-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.logout-link:hover {
    color: var(--dark);
}

/* Login Icon Link */
.login-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.login-icon-link:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.login-icon-link svg {
    width: 24px;
    height: 24px;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.cart-count:empty {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
}

/* Buttons - Minimal, No Sharp Edges */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: transparent;
}

.btn-primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--primary);
    transform: translate(-50%, 50%) rotate(45deg);
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 0;
}

.btn-primary:hover {
    color: var(--white);
    border-color: var(--primary);
    transform: none;
    box-shadow: none;
}

.btn-primary:hover::before {
    width: 1000%;
    height: 1000%;
    transform: translate(-50%, 50%) rotate(45deg);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    transform: translate(-50%, 50%) rotate(45deg);
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 0;
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--secondary);
    transform: none;
    box-shadow: none;
}

.btn-outline:hover::before {
    width: 1000%;
    height: 1000%;
    transform: translate(-50%, 50%) rotate(45deg);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Hero Section */
html {
    scroll-behavior: smooth;
}

body {
    scroll-snap-type: none;
}
/* Hero Section */
html {
    scroll-behavior: smooth;
}

body {
    scroll-snap-type: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 0;
    position: relative;
    color: var(--text);
    border-bottom: none;
    
    /* Background image styles */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay katmanını kaldırdım */
.hero::before {
    content: none; /* veya bu satırı tamamen silebilirsiniz */
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-logo {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    text-align: center;
}

.hero-logo-image {
    width: 600px;
    max-width: 90%;
    height: auto;
    animation: heroLogoFadeIn 1s ease;
    display: block;
    margin: 0 auto;
}

.hero-buttons {
    position: relative;
    z-index: 2;
    animation: heroContentFadeIn 1s ease 0.3s both;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-buttons .btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: auto;
    animation: heroScrollIndicatorFadeIn 1s ease 0.8s both;
}

.hero-scroll-indicator:hover {
    opacity: 0.7;
}

.hero-logo-above-indicator {
    margin-bottom: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    text-align: center;
}

.hero-scroll-indicator:hover .hero-logo-above-indicator {
    opacity: 0.9;
}

.hero-logo-indicator {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

.scroll-arrow {
    color: var(--dark);
    animation: scrollBounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.6;
    }
}

@keyframes heroLogoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: heroContentFadeIn 1s ease 0.3s both;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroScrollIndicatorFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.hero-price span {
    font-size: 1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.hero-description {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.stat-subtitle {
    display: block;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.stat-time {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Section Styles - Spacious, No Boxes */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--dark);
    letter-spacing: -1px;
}

.services-title-with-hologram {
    position: relative;
    z-index: 1;
}

.hologram-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    color: rgba(161, 34, 33, 0.03);
    z-index: -1;
    line-height: 1;
    letter-spacing: 0;
    pointer-events: none;
    white-space: nowrap;
    text-transform: lowercase;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
}

.section-tag {
    display: inline-block;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-group-center {
    text-align: center;
    margin-top: 3rem;
}

/* About Section - Organic Layout */
.about-section {
    background: var(--white);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.about-content-wrapper.about-reversed {
    grid-template-columns: 1fr 1fr;
}

.about-content-wrapper.about-reversed .about-left {
    order: 1;
}

.about-content-wrapper.about-reversed .about-right {
    order: 2;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-left .section-tag {
    margin-bottom: 0;
}

.about-left h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--dark);
    letter-spacing: -1px;
}

.about-right h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--dark);
    letter-spacing: -1px;
}

.about-title-with-hologram {
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--dark);
    letter-spacing: -1px;
}

.hologram-year {
    position: absolute;
    top: -100px;
    left: -50px;
    font-size: 200px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    color: rgba(161, 34, 33, 0.03);
    z-index: -1;
    line-height: 1;
    letter-spacing: -5px;
    pointer-events: none;
}

.about-left .btn {
    width: fit-content;
    margin-top: 0;
}

.about-right .btn {
    width: fit-content;
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 12px;
}

.shop-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 0;
    font-style: italic;
    letter-spacing: 0.5px;
}

.shop-content-text {
    margin-top: 30px;
}

.shop-content-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
}

.about-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 60px;
    margin-bottom: 0;
    perspective: 1200px;
    position: relative;
    min-height: 600px;
    padding: 0;
    overflow: visible;
}

.gallery-item {
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--white);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    box-shadow: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.gallery-item.active {
    z-index: 10;
    transform: translate(-50%, -50%) translateZ(100px) scale(1.1) !important;
    opacity: 1 !important;
    box-shadow: none;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.stat-card {
    text-align: center;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: none;
    margin: 0;
    flex: 0 0 auto;
    position: relative;
}

.stat-card:nth-child(1) {
    margin-right: 120px;
    margin-bottom: 60px;
    transform: translateY(-10px);
}

.stat-card:nth-child(2) {
    margin-left: 80px;
    margin-right: 100px;
    margin-bottom: 40px;
    transform: translateY(20px);
}

.stat-card:nth-child(3) {
    margin-left: 60px;
    transform: translateY(-15px);
}

.stat-card:nth-child(4) {
    margin-left: 140px;
    margin-top: -30px;
    transform: translateY(10px);
}

.stat-card:hover {
    transform: none;
    box-shadow: none;
}

.stat-card .stat-number {
    font-size: 72px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -3px;
    display: block;
}

.stat-card .stat-label {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0;
    display: block;
}

/* Why Choose Us - No Boxes */
.why-choose-us {
    background: var(--white);
    padding-top: 20px;
}

/* Services Grid - Clean, Organized Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    text-align: center;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: none;
    margin: 0;
    position: relative;
}

.service-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.service-item h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.service-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: transparent;
    border: none;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 10px;
    overflow: hidden;
    z-index: 1;
}

.read-more-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--primary);
    transform: translate(-50%, 50%) rotate(45deg);
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 0;
    opacity: 1;
}

.read-more-link:hover {
    color: var(--white);
    border: none;
}

.read-more-link:hover::before {
    width: 1000%;
    height: 1000%;
    transform: translate(-50%, 50%) rotate(45deg);
    opacity: 1;
}

.read-more-arrow {
    display: none;
}

/* Legacy feature styles for compatibility */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: none;
    margin: 0;
    position: relative;
}

.feature-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
}

.feature-icon::before,
.feature-icon::after {
    display: none;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--dark);
}

.rating-banner {
    text-align: center;
    background: none;
    color: var(--text);
    padding: 60px 0;
    border: none;
    margin-top: 80px;
}

.rating-number {
    display: block;
    font-size: 72px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -3px;
}

.rating-text {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0;
}

/* Menu Section */
.menu-section {
    background: var(--light-gray);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    transition: none;
}

.menu-item:hover {
    transform: none;
}

.menu-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 0;
    font-weight: 600;
}

.menu-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.menu-item p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.menu-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Team Section */
.team-section {
    background: var(--white);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 80px;
    position: relative;
}

.team-member {
    margin: 0;
    flex: 0 0 auto;
    position: relative;
    width: 200px;
    text-align: center;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: none;
}

.team-member:nth-child(1) {
    margin-right: 80px;
    margin-bottom: 70px;
    transform: translateY(-20px);
}

.team-member:nth-child(2) {
    margin-left: 50px;
    margin-right: 60px;
    margin-bottom: 50px;
    transform: translateY(25px);
}

.team-member:nth-child(3) {
    margin-left: 40px;
    margin-bottom: 60px;
    transform: translateY(-15px);
}

.team-member:nth-child(4) {
    margin-right: 70px;
    margin-top: -30px;
    transform: translateY(20px);
}

.team-member:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.team-image {
    width: 100%;
    height: 300px;
    margin: 0 auto 25px;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.team-image::before {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
}

.team-image::after {
    content: '';
    width: 30px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 0;
    position: absolute;
    top: 20px;
}

.team-member h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--dark);
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 80px;
    position: relative;
}

.testimonial-item {
    margin: 0;
    flex: 0 0 auto;
    position: relative;
    width: 300px;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.testimonial-item:nth-child(1) {
    margin-right: 90px;
    margin-bottom: 80px;
    transform: translateX(-20px) translateY(-20px);
}

.testimonial-item:nth-child(2) {
    margin-left: 60px;
    margin-right: 70px;
    margin-bottom: 60px;
    transform: translateX(15px) translateY(30px);
}

.testimonial-item:nth-child(3) {
    margin-left: 50px;
    transform: translateX(-10px) translateY(-15px);
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* Blog Section */
.blog-section {
    background: var(--white);
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 80px;
    position: relative;
}

.blog-item {
    margin: 0;
    flex: 0 0 auto;
    position: relative;
    width: 350px;
    background: none;
    padding: 0;
    border-radius: 0;
    transition: none;
}

.blog-item:nth-child(1) {
    margin-right: 100px;
    margin-bottom: 90px;
    transform: translateX(-15px) translateY(-25px);
}

.blog-item:nth-child(2) {
    margin-left: 60px;
    margin-right: 80px;
    margin-bottom: 70px;
    transform: translateX(20px) translateY(30px);
}

.blog-item:nth-child(3) {
    margin-left: 50px;
    margin-bottom: 85px;
    transform: translateX(-10px) translateY(-15px);
}

.blog-item:nth-child(4) {
    margin-right: 90px;
    margin-top: -50px;
    transform: translateX(15px) translateY(20px);
}

.blog-item:nth-child(5) {
    margin-left: 70px;
    margin-right: 60px;
    transform: translateX(-20px) translateY(-10px);
}

.blog-item:nth-child(6) {
    margin-left: 80px;
    transform: translateX(10px) translateY(25px);
}

.blog-item:hover {
    transform: none;
}

.blog-date {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.blog-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.4;
}

.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--secondary);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    transform: translate(-50%, 50%) rotate(45deg);
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 0;
}

.read-more:hover {
    color: var(--white);
    border-color: var(--secondary);
    text-decoration: none;
}

.read-more:hover::before {
    width: 1000%;
    height: 1000%;
    transform: translate(-50%, 50%) rotate(45deg);
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-section p:last-child {
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0;
    font-family: inherit;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-top: 60px;
}

.contact-info {
    background: none;
    padding: 0;
    border-radius: 0;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--dark);
}

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-item strong {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-form {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    font-size: 16px;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Shop Section Styles */
.shop-section {
    padding: 120px 0;
    background: var(--white);
}

/* Cart Section */
.cart-section {
    padding: 120px 0;
    background: var(--white);
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.cart-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-top: 3rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-details h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin: 0;
}

.cart-item-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 0.25rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.quantity-btn:hover {
    color: var(--primary);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.btn-remove {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.btn-remove:hover {
    color: var(--primary);
}

.cart-summary {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 0;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.cart-summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text);
}

.summary-row.summary-total {
    font-size: 1.25rem;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
    color: var(--dark);
}

.cart-subtotal,
.cart-shipping,
.cart-total {
    font-weight: 600;
}

.free-shipping {
    color: var(--primary);
}

.free-shipping-notice {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 0;
    margin-top: 1rem;
}

.free-shipping-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #2e7d32;
}

.cart-summary-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-summary-actions .btn {
    width: 100%;
    text-align: center;
}

.shop-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 80px;
    position: relative;
}

.shop-item {
    margin: 0;
    flex: 0 0 auto;
    position: relative;
    width: 300px;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: none;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.shop-item:nth-child(1) {
    margin-right: 80px;
    margin-bottom: 100px;
    transform: translateY(-20px);
}

.shop-item:nth-child(2) {
    margin-left: 40px;
    margin-right: 60px;
    margin-bottom: 60px;
    transform: translateY(30px);
}

.shop-item:nth-child(3) {
    margin-left: 60px;
    margin-bottom: 80px;
    transform: translateY(-10px);
}

.shop-item:nth-child(4) {
    margin-right: 100px;
    margin-top: -40px;
    transform: translateY(20px);
}

.shop-item:nth-child(5) {
    margin-left: 50px;
    margin-right: 70px;
    transform: translateY(-15px);
}

.shop-item:nth-child(6) {
    margin-left: 80px;
    transform: translateY(25px);
}

.shop-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}


.shop-image {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.shop-image:hover {
    transform: scale(1.02);
}

.shop-image-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 0.3s ease;
}

.shop-image:hover .shop-image-overlay {
    opacity: 1;
}

.add-to-cart-icon {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: 2px solid var(--white);
    border-radius: 0;
    transition: all 0.3s ease;
}

.shop-image:hover .add-to-cart-icon {
    background: var(--white);
    color: var(--dark);
}

/* Only show decorative icons when there's no background image */
.shop-image:not([style*="background-image"])::before {
    content: '';
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.shop-image:not([style*="background-image"])::after {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.shop-image.icon-equipment:not([style*="background-image"])::before {
    width: 60px;
    height: 60px;
    border-radius: 0;
    transform: rotate(45deg);
}

.shop-image.icon-equipment:not([style*="background-image"])::after {
    width: 40px;
    height: 40px;
    border-radius: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.shop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
}

.shop-item h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--dark);
}

.shop-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.shop-rating {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.shop-price {
    margin-bottom: 25px;
}

.price-current {
    font-size: 24px;
    font-weight: 400;
    color: var(--dark);
}

.price-old {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Fix blog item description */
.blog-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Fix feature item description */
.feature-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 0;
}

/* Coffee Cup Progress Section */
.coffee-cup-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
}

.coffee-cup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.coffee-cup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding-top: 120px;
    margin-top: -120px;
}

.coffee-cup-svg-container {
    position: relative;
    width: 300px;
    height: 480px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    overflow: visible;
}

.coffee-cup-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* Legacy coffee-cup class for compatibility */
.coffee-cup {
    position: relative;
    width: 280px;
    height: 320px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    display: none; /* Hide old CSS version */
}

.cup-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    filter: blur(15px);
    z-index: 0;
}

.cup-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 40px;
    z-index: 4;
}

.cup-rim {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        #e8e8e8 0%, 
        #d0d0d0 50%,
        #b8b8b8 100%);
    border-radius: 50%;
    border: 4px solid var(--dark);
    box-shadow: 
        inset 0 2px 5px rgba(255,255,255,0.5),
        0 2px 10px rgba(0,0,0,0.3);
}

.cup-rim::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 30px;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0.8) 0%,
        rgba(255,255,255,0.3) 100%);
    border-radius: 50%;
}

.cup-body {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 260px;
    background: linear-gradient(to right,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0.95) 100%);
    border: 4px solid var(--dark);
    border-top: none;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.2);
}

.cup-inner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0.3) 0%,
        transparent 30%);
    pointer-events: none;
    z-index: 3;
}

.coffee-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, 
        #1a0f0a 0%,
        #2d1812 15%,
        #3e2418 30%,
        #4d2e1f 50%,
        #5d3a28 70%,
        #6d4631 85%,
        #7a5240 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 21px 21px;
    overflow: hidden;
    z-index: 1;
}

.coffee-liquid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.15) 30%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.15) 70%,
        transparent 100%);
    animation: coffeeShine 4s infinite;
}

@keyframes coffeeShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.coffee-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coffee-bubbles::before,
.coffee-bubbles::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: bubbleFloat 3s infinite ease-in-out;
}

.coffee-bubbles::before {
    width: 8px;
    height: 8px;
    left: 20%;
    bottom: 30%;
    animation-delay: 0s;
}

.coffee-bubbles::after {
    width: 6px;
    height: 6px;
    left: 60%;
    bottom: 50%;
    animation-delay: 1.5s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

.coffee-foam {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 25px;
    background: linear-gradient(to bottom, 
        #f5f5f5 0%,
        #e8e8e8 30%,
        #d4c4b8 60%,
        #c4b5a8 100%);
    border-radius: 50% 50% 0 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    box-shadow: 
        0 -2px 10px rgba(0,0,0,0.1),
        inset 0 2px 5px rgba(255,255,255,0.5);
}

.foam-bubble {
    position: absolute;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: foamBubble 2s infinite ease-in-out;
}

.foam-bubble.bubble-1 {
    width: 12px;
    height: 12px;
    top: 8px;
    left: 15%;
    animation-delay: 0s;
}

.foam-bubble.bubble-2 {
    width: 10px;
    height: 10px;
    top: 5px;
    left: 35%;
    animation-delay: 0.4s;
}

.foam-bubble.bubble-3 {
    width: 14px;
    height: 14px;
    top: 10px;
    left: 55%;
    animation-delay: 0.8s;
}

.foam-bubble.bubble-4 {
    width: 8px;
    height: 8px;
    top: 6px;
    left: 75%;
    animation-delay: 1.2s;
}

.foam-bubble.bubble-5 {
    width: 11px;
    height: 11px;
    top: 9px;
    left: 50%;
    animation-delay: 1.6s;
}

@keyframes foamBubble {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-3px) scale(1.1);
        opacity: 1;
    }
}

.cup-handle {
    position: absolute;
    top: 80px;
    right: -40px;
    width: 60px;
    height: 100px;
    z-index: 1;
}

.cup-handle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--dark);
    border-left: none;
    border-radius: 0 60px 60px 0;
    background: linear-gradient(to right,
        rgba(255,255,255,0.9) 0%,
        rgba(255,255,255,0.95) 100%);
    box-shadow: 
        inset -5px 0 10px rgba(0,0,0,0.1),
        5px 0 10px rgba(0,0,0,0.2);
}

.handle-inner {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 84px;
    border: 3px solid rgba(255,255,255,0.8);
    border-left: none;
    border-radius: 0 50px 50px 0;
    background: linear-gradient(to right,
        rgba(255,255,255,0.3) 0%,
        transparent 100%);
}

.coffee-progress-text {
    margin-top: 2rem;
    text-align: center;
}

.coffee-ready-message {
    display: inline-block;
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    margin-top: 30px;
    font-family: inherit;
    text-shadow: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Coffee Cup Info Section */
.coffee-cup-info {
    padding: 40px 0;
}

.coffee-cup-info .section-tag {
    display: inline-block;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.coffee-cup-info h2 {
    font-size: 48px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -1px;
}

.coffee-cup-info p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
}

.coffee-features {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.coffee-feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 0;
    background: none;
    padding: 0;
    border: none;
}

.coffee-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 32px;
}

.coffee-feature-item h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--dark);
}

.coffee-feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* Blog Detail Section */
.blog-detail-section {
    padding: 140px 0 120px;
    background: var(--white);
}

.blog-detail {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 60px;
    text-align: center;
}

.blog-detail-header h1 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--dark);
    letter-spacing: -1px;
}

.blog-excerpt {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-author {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
}

.blog-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
}

.blog-content h2,
.blog-content h3 {
    font-weight: 400;
    margin: 50px 0 25px;
    color: var(--dark);
}

.blog-content p {
    margin-bottom: 25px;
}

.blog-footer {
    margin-top: 60px;
    text-align: center;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .coffee-cup-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .header-content {
        padding: 0 30px;
    }

    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-gallery {
        min-height: 400px;
        perspective: 1000px;
    }

    .menu-grid,
    .shop-grid,
    .features-grid,
    .services-grid,
    .stats-grid,
    .blog-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-card,
    .feature-item,
    .service-item,
    .shop-item,
    .blog-item,
    .team-member,
    .testimonial-item {
        margin: 0 !important;
        transform: none !important;
        width: 100%;
        max-width: 100%;
    }

    .coffee-cup-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .coffee-cup-info {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Product detail - keep 2 columns on tablets */
    .product-detail-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 60px;
    }
}

/* Mobile and Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav.active {
        display: block;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .logo a {
        font-size: 1.4rem;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .hero-content-wrapper {
        padding: 0 20px;
    }
    
    .hero-logo {
        margin-bottom: 40px;
    }
    
    .hero-logo-image {
        width: 100%;
        max-width: 500px;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .hero-logo-indicator {
        width: 80px;
    }
    
    .scroll-text {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-price {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin: 1rem 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-subtitle {
        font-size: 1.1rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hologram-text {
        font-size: 120px;
        color: rgba(161, 34, 33, 0.02);
    }

    .section-header p {
        font-size: 1rem;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    /* Buttons */
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-group .btn {
        width: 100%;
    }

    /* Grids */
    .menu-grid,
    .shop-grid,
    .features-grid,
    .services-grid,
    .stats-grid,
    .blog-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stat-card,
    .feature-item,
    .service-item,
    .shop-item,
    .blog-item,
    .team-member,
    .testimonial-item {
        margin: 0 !important;
        transform: none !important;
        width: 100%;
        max-width: 100%;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-left h2 {
        font-size: 32px;
    }
    
    .hologram-year {
        font-size: 120px;
        top: -60px;
        left: -30px;
        color: rgba(161, 34, 33, 0.02);
    }

    .about-gallery {
        min-height: 300px;
        perspective: 800px;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
    }
    
    .menu-item,
    .contact-info {
        padding: 0;
    }

    /* Coffee Cup Section */
    .coffee-cup-section {
        padding: 4rem 0;
    }

    .coffee-cup-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .coffee-cup-wrapper {
        min-height: 300px;
        padding-top: 100px;
        margin-top: -100px;
    }

    .coffee-cup-svg-container {
        width: 250px;
        height: 333px;
    }

    .coffee-ready-message {
        font-size: 1.75rem;
    }

    .coffee-cup-info {
        text-align: center;
        padding: 1rem 0;
    }

    .coffee-cup-info h2 {
        font-size: 1.75rem;
    }

    .coffee-cup-info p {
        font-size: 0.95rem;
    }

    .coffee-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .coffee-feature-item {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        margin: 0;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section ul {
        align-items: center;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    /* Rating Banner */
    .rating-banner {
        padding: 1.5rem;
    }

    .rating-number {
        font-size: 2.5rem;
    }

    .rating-text {
        font-size: 1.1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .logo a {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        font-size: 1.3rem;
    }

    /* Hero */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-price {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* Sections */
    section {
        padding: 2.5rem 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Cards */
    .menu-item,
    .shop-item,
    .feature-item,
    .stat-card,
    .blog-item,
    .contact-info {
        padding: 1.25rem;
    }

    .menu-item h3,
    .shop-item h3,
    .feature-item h4,
    .blog-item h3 {
        font-size: 1.1rem;
    }

    .menu-item p,
    .shop-item p,
    .feature-item p,
    .blog-item p {
        font-size: 0.9rem;
    }
}

/* Product Detail Page */
.shop-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.shop-item-link:hover {
    color: inherit;
}

/* ============================================
   PRODUCT DETAIL PAGE - MODERN REDESIGN
   ============================================ */

.product-detail-section {
    padding: 140px 0 100px;
    min-height: 80vh;
    background: var(--white);
}

/* Breadcrumb */
.product-breadcrumb {
    margin-bottom: 60px;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.product-breadcrumb ol {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 8px;
}

.product-breadcrumb li {
    display: flex;
    align-items: center;
}

.product-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: var(--dark);
}

.product-breadcrumb span {
    margin: 0 8px;
    color: var(--text-light);
    opacity: 0.4;
}

.product-breadcrumb .current {
    color: var(--text);
    font-weight: 400;
}

/* Main Product Wrapper */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 140px;
}

.product-main-image-wrapper {
    width: 100%;
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 700px;
    background: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-main-image:hover {
    transform: scale(1.02);
}

.product-main-image.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-light);
    cursor: default;
}

.product-main-image.product-placeholder svg {
    opacity: 0.3;
}

.image-zoom-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-main-image:hover .image-zoom-overlay {
    opacity: 1;
}

.zoom-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.zoom-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--primary-color);
    width: fit-content;
    margin-bottom: 10px;
}

.product-title {
    font-size: 52px;
    font-weight: 300;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.product-rating .stars {
    display: flex;
    gap: 4px;
}

.product-rating .star {
    font-size: 18px;
    color: #ddd;
    transition: color 0.2s ease;
}

.product-rating .star.filled {
    color: #ffc107;
}

.product-rating .star.half {
    color: #ffc107;
    opacity: 0.6;
}

.rating-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    margin-left: 4px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-light);
    margin-left: 4px;
}

/* Price Block */
.product-price-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 42px;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: -1px;
}

.price-old {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.5;
    font-weight: 300;
}

.price-discount {
    display: inline-block;
    padding: 4px 12px;
    background: #ff4444;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4caf50;
}

.product-stock-info svg {
    width: 18px;
    height: 18px;
    stroke: #4caf50;
}

.product-stock-info.out-of-stock {
    color: #f44336;
}

.product-stock-info.out-of-stock svg {
    stroke: #f44336;
}

.stock-text {
    font-weight: 500;
}

.stock-quantity {
    color: var(--text-light);
    font-weight: 400;
}

/* Short Description */
.product-short-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin: 20px 0;
}

.product-short-desc p {
    margin: 0;
}

/* Product Actions */
.product-actions-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.quantity-selector-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quantity-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    width: fit-content;
}

.quantity-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.quantity-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-btn.decrease {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.quantity-btn.increase {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.quantity-input {
    width: 80px;
    height: 48px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    background: transparent;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.02);
}

.btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 40px;
    background: var(--dark);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add-to-cart:hover:not(:disabled) {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-add-to-cart:active:not(:disabled) {
    transform: translateY(0) scale(1);
}

.btn-add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--text-light);
}

.btn-add-to-cart svg {
    width: 20px;
    height: 20px;
}

/* Product Meta */
.product-meta-info {
    padding: 25px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.meta-label {
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

.meta-value {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-value:hover {
    color: var(--dark);
    text-decoration: underline;
}

/* Product Tabs */
.product-tabs-block {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    clear: both;
}

.product-tabs-nav {
    display: flex !important;
    gap: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 50px !important;
    flex-wrap: wrap;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

/* Override general button styles for tab buttons */
.product-tabs-nav button.tab-btn,
.product-tabs-nav .tab-btn {
    position: relative;
    padding: 18px 40px !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    color: var(--text-light) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.product-tabs-nav button.tab-btn:hover,
.product-tabs-nav .tab-btn:hover {
    color: var(--dark) !important;
    background: rgba(0, 0, 0, 0.02) !important;
    transform: none !important;
    box-shadow: none !important;
}

.product-tabs-nav button.tab-btn.active,
.product-tabs-nav .tab-btn.active {
    color: var(--dark) !important;
    border-bottom-color: var(--dark) !important;
    transform: none !important;
    box-shadow: none !important;
}

.product-tabs-nav .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--dark);
    z-index: 1;
}

.product-tabs-nav .tab-btn span {
    display: inline-block;
}

.tab-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 24px !important;
    height: 24px !important;
    padding: 0 8px !important;
    background: var(--text-light) !important;
    color: var(--white) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    margin-left: 8px;
}

.product-tabs-nav .tab-btn.active .tab-badge {
    background: var(--dark) !important;
}

.product-tabs-content {
    position: relative;
    min-height: 300px;
    width: 100%;
}

.tab-panel {
    display: none !important;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block !important;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-empty-message {
    color: var(--text-light);
    font-style: italic;
    padding: 40px 0;
    text-align: center;
    font-size: 15px;
}

.product-description-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    max-width: 900px;
}

.product-description-content p {
    margin-bottom: 25px;
}

.product-description-content ul,
.product-description-content ol {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.product-description-content li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.product-description-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.product-description-content ol {
    counter-reset: item;
}

.product-description-content ol li {
    counter-increment: item;
    padding-left: 30px;
}

.product-description-content ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.product-description-content h1,
.product-description-content h2,
.product-description-content h3,
.product-description-content h4 {
    margin: 30px 0 15px;
    color: var(--dark);
    font-weight: 400;
}

.product-description-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

.product-description-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color 0.3s ease;
}

.product-description-content a:hover {
    color: var(--dark);
}

/* Reviews Section */
.reviews-section {
    padding: 20px 0;
}

.reviews-summary {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.reviews-average {
    display: flex;
    align-items: center;
    justify-content: center;
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.average-number {
    font-size: 64px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1;
}

.average-stars {
    display: flex;
    gap: 4px;
}

.average-stars .star {
    font-size: 24px;
    color: #ddd;
}

.average-stars .star.filled {
    color: #ffc107;
}

.average-stars .star.half {
    color: #ffc107;
    opacity: 0.6;
}

.average-total {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.reviews-list {
    margin-bottom: 60px;
}

.review-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    font-size: 14px;
    color: #ddd;
}

.review-rating .star.filled {
    color: #ffc107;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

.review-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.review-content p {
    margin: 0;
}

/* Review Form */
.review-form-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.review-form-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input .star-label:hover,
.rating-input .star-label.selected {
    color: #ffc107;
}

.rating-input input[type="radio"]:checked ~ .star-label ~ .star-label {
    color: #ffc107;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: var(--white);
    color: var(--dark);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--dark);
    background: rgba(0, 0, 0, 0.02);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-review {
    padding: 16px 40px;
    background: var(--dark);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit-review:active {
    transform: translateY(0) scale(1);
}

/* Additional Information */
.additional-info-content {
    padding: 20px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 20px 0;
    vertical-align: top;
}

.info-label {
    width: 200px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}

.stock-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.stock-badge.in-stock {
    background: #4caf50;
    color: var(--white);
}

.stock-badge.out-of-stock {
    background: #f44336;
    color: var(--white);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0;
}

.error-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    text-align: center;
}

.error-content h1 {
    font-size: 120px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 15px;
}

.error-content p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        gap: 60px;
    }
    
    .product-main-image {
        height: 600px;
    }
    
    .product-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 100px 0 60px;
    }

    .product-breadcrumb {
        margin-bottom: 40px;
        font-size: 12px;
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .product-main-image {
        height: 500px;
    }

    .product-title {
        font-size: 36px;
    }

    .price-current {
        font-size: 36px;
    }

    .price-old {
        font-size: 20px;
    }

    .product-price-block {
        padding: 25px 0;
    }

    .product-actions-block {
        gap: 20px;
    }

    .quantity-controls {
        width: 100%;
        justify-content: center;
    }

    .btn-add-to-cart {
        width: 100%;
    }

    .product-short-desc {
        font-size: 16px;
    }

    .product-tabs-block {
        margin-top: 60px;
        padding-top: 60px;
    }

    .product-tabs-nav {
        flex-wrap: wrap !important;
        gap: 0 !important;
    }

    .product-tabs-nav button.tab-btn,
    .product-tabs-nav .tab-btn {
        padding: 14px 24px !important;
        font-size: 13px !important;
        flex: 1;
        min-width: 120px;
        justify-content: center !important;
    }

    .average-number {
        font-size: 48px;
    }

    .average-stars .star {
        font-size: 20px;
    }

    .review-form-title {
        font-size: 20px;
    }

    .info-label {
        width: 150px;
        font-size: 12px;
    }

    .info-value {
        font-size: 14px;
    }

    .product-description-content {
        font-size: 16px;
    }

    .error-content h1 {
        font-size: 80px;
    }

    .error-content h2 {
        font-size: 24px;
    }
    
    .modal-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .product-detail-section {
        padding: 90px 0 40px;
    }

    .product-main-image {
        height: 400px;
    }

    .product-title {
        font-size: 28px;
    }

    .price-current {
        font-size: 32px;
    }

    .product-rating {
        flex-wrap: wrap;
        gap: 8px;
    }

    .rating-count {
        width: 100%;
        margin-left: 0;
    }

    .product-tabs-block {
        margin-top: 40px;
        padding-top: 40px;
    }

    .product-tabs-nav button.tab-btn,
    .product-tabs-nav .tab-btn {
        padding: 12px 16px !important;
        font-size: 12px !important;
        min-width: 100px;
        flex: 1 1 auto;
    }

    .average-number {
        font-size: 40px;
    }

    .average-stars .star {
        font-size: 18px;
    }

    .review-item {
        padding: 20px 0;
    }

    .review-form-title {
        font-size: 18px;
    }

    .info-table td {
        padding: 15px 0;
        display: block;
    }

    .info-label {
        width: 100%;
        margin-bottom: 8px;
        font-size: 11px;
    }

    .info-value {
        font-size: 13px;
    }
}

/* Additional Mobile Styles */
@media (max-width: 768px) {
    .blog-date {
        font-size: 0.85rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-item {
        margin-bottom: 1.25rem;
    }

    /* Coffee Cup */
    .coffee-cup-section {
        padding: 3rem 0;
    }

    .coffee-cup-svg-container {
        width: 200px;
        height: 267px;
    }

    .coffee-ready-message {
        font-size: 1.5rem;
    }

    .coffee-cup-info h2 {
        font-size: 1.5rem;
    }

    .coffee-cup-info p {
        font-size: 0.9rem;
    }

    .coffee-feature-item {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }

    /* Forms */
    .contact-form {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.65rem;
        font-size: 0.95rem;
    }

    /* Cart Section */
    .cart-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .cart-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }

    /* Rating */
    .rating-banner {
        padding: 1.25rem;
    }

    .rating-number {
        font-size: 2rem;
    }

    .rating-text {
        font-size: 1rem;
    }

    /* Price */
    .price {
        font-size: 1.5rem;
    }

    /* Feature Icon */
    .feature-icon {
        font-size: 2.5rem;
    }
}

/* ============================================
   AUTH PAGES (Login, Register, Password Reset)
   ============================================ */

.auth-section {
    padding: 140px 0 100px;
    min-height: 80vh;
    background: var(--white);
}

.auth-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px;
    background: var(--white);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 36px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.auth-header p {
    font-size: 15px;
    color: var(--text-light);
}

.auth-form {
    margin-top: 30px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group .required {
    color: #f44336;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: var(--white);
    color: var(--dark);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--dark);
    background: rgba(0, 0, 0, 0.02);
}

.form-input.error {
    border-color: #f44336;
}

.error-message {
    display: block;
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    display: block;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.auth-footer p {
    font-size: 14px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.forgot-password-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--dark);
    text-decoration: underline;
}

.alert {
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 0;
    font-size: 14px;
}

.alert-success {
    background: #4caf50;
    color: var(--white);
}

.alert-error {
    background: #f44336;
    color: var(--white);
}

/* ============================================
   ACCOUNT PAGE
   ============================================ */

.account-section {
    padding: 140px 0 100px;
    min-height: 80vh;
    background: var(--white);
}

.account-header {
    margin-bottom: 50px;
}

.account-header h1 {
    font-size: 42px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.account-header p {
    font-size: 16px;
    color: var(--text-light);
}

.account-tabs {
    margin-top: 40px;
}

.account-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.account-tab-btn {
    padding: 16px 32px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-tab-btn:hover {
    color: var(--dark);
    background: rgba(0, 0, 0, 0.02);
}

.account-tab-btn.active {
    color: var(--dark);
    border-bottom-color: var(--dark);
}

.account-tabs-content {
    position: relative;
}

.account-tab-panel {
    display: none;
}

.account-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.account-tab-panel h2 {
    font-size: 28px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.account-form {
    max-width: 800px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px dashed #e9ecef;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.empty-state::before {
    content: '';
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.08;
    display: block;
    position: relative;
    border: 2px solid rgba(139, 69, 19, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.empty-state p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Account Orders List - Modern Design */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: fadeInUp 0.6s ease-out;
}

.order-item {
    padding: 0;
    border: 2px solid #e9ecef;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
}

.order-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.order-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15), 0 4px 16px rgba(139, 69, 19, 0.1);
    transform: translateY(-4px);
}

.order-item:hover::before {
    transform: scaleX(1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 35px;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #e9ecef;
}

.order-header > div:first-child {
    flex: 1;
    min-width: 200px;
}

.order-header strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.order-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.order-date {
    position: relative;
    padding-left: 22px;
}

.order-date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--text-light);
    opacity: 0.4;
    border-radius: 2px;
}

.order-date::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: var(--text-light);
    opacity: 0.4;
}

.order-status {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.order-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.status-pending {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    color: var(--white);
}

.status-processing {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: var(--white);
}

.status-shipped {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: var(--white);
}

.status-delivered {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: var(--white);
}

.status-cancelled {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: var(--white);
}

.order-total {
    padding: 25px 35px;
    font-size: 15px;
    color: var(--text-light);
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #e9ecef;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 15px;
}

.order-total > span:first-child {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

.order-total strong {
    font-size: 22px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: none;
}

.order-total strong::before {
    content: '₺';
    font-size: 16px;
    opacity: 0.7;
    font-weight: 600;
}

.order-link {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.order-link::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.order-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.order-link:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

/* Order Detail Page */
.order-detail-section {
    padding: 140px 0 100px;
    min-height: 80vh;
    background: var(--white);
}

.order-detail-header {
    margin-bottom: 40px;
}

.back-link {
    display: inline-block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--dark);
}

.order-detail-header h1 {
    font-size: 42px;
    font-weight: 300;
    color: var(--dark);
    margin: 0;
    letter-spacing: -1px;
}

.order-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.order-detail-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.order-detail-box h2 {
    font-size: 24px;
    font-weight: 300;
    color: var(--dark);
    margin: 0 0 20px 0;
}

.order-detail-box h3 {
    font-size: 20px;
    font-weight: 300;
    color: var(--dark);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.order-detail-header-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.order-detail-header-box h2 {
    margin: 0;
    font-size: 28px;
}

.order-status-badge {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
}

.address-display {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
}

.address-display p {
    margin: 5px 0;
}

.order-items-table {
    overflow-x: auto;
}

.order-items-table table {
    width: 100%;
    border-collapse: collapse;
}

.order-items-table th {
    text-align: left;
    padding: 15px;
    background: rgba(0, 0, 0, 0.03);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.order-items-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text);
}

.order-items-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

.order-items-table tfoot {
    background: rgba(0, 0, 0, 0.03);
}

.order-items-table tfoot td {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    padding: 20px 15px;
}

.product-link {
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    color: var(--primary);
    text-decoration: none;
}

.product-link:hover {
    text-decoration: underline;
}

.payment-info {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
}

.payment-info p {
    margin: 10px 0;
}

.order-detail-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Address Cards */
.addresses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.address-card {
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: var(--white);
}

.address-card:hover {
    border-color: var(--dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.address-header strong {
    font-size: 16px;
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.badge-primary {
    background: var(--dark);
    color: var(--white);
}

.address-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    color: var(--dark);
}

.address-body {
    margin-bottom: 15px;
}

.address-body p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.address-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 300;
    color: var(--dark);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-body {
    padding: 30px;
}

.required {
    color: #f44336;
}

/* Responsive Auth & Account */
@media (max-width: 768px) {
    .auth-section {
        padding: 100px 0 60px;
    }

    .auth-container {
        padding: 40px 30px;
    }

    .auth-header h1 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .account-section {
        padding: 100px 0 60px;
    }

    .account-header h1 {
        font-size: 32px;
    }

    .account-tabs-nav {
        flex-wrap: wrap;
    }

    .account-tab-btn {
        padding: 12px 20px;
        font-size: 12px;
        flex: 1;
        min-width: 100px;
    }
    
    /* Orders List Responsive */
    .orders-list {
        gap: 20px;
    }
    
    .order-item {
        border-width: 2px;
    }
    
    .order-header {
        padding: 25px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .order-header strong {
        font-size: 18px;
    }
    
    .order-date {
        font-size: 13px;
    }
    
    .order-status {
        padding: 8px 16px;
        font-size: 12px;
        align-self: flex-start;
    }
    
    .order-total {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-total strong {
        font-size: 22px;
    }
    
    .empty-state {
        padding: 60px 20px;
    }
    
    .empty-state::before {
        font-size: 60px;
    }
    
    .empty-state p {
        font-size: 16px;
    }

    .user-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .user-name {
        display: none;
    }

    .login-icon-link {
        width: 36px;
        height: 36px;
    }
    
    .login-icon-link svg {
        width: 20px;
        height: 20px;
    }

    .addresses-list {
        grid-template-columns: 1fr;
    }

    .address-card {
        padding: 20px;
    }

    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .order-detail-section {
        padding: 100px 0 60px;
    }

    .order-detail-header h1 {
        font-size: 32px;
    }

    .order-detail-box {
        padding: 20px;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .order-items-table {
        font-size: 12px;
    }

    .order-items-table th,
    .order-items-table td {
        padding: 10px;
    }

    .order-detail-actions {
        flex-direction: column;
    }

    .order-detail-actions .btn {
        width: 100%;
    }
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-section {
    padding: 140px 0 100px;
    background: #f8f9fa;
    min-height: 80vh;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
}

.checkout-main {
    background: white;
    border-radius: 0;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.checkout-section-box {
    padding: 35px;
    border-bottom: 1px solid #e9ecef;
}

.checkout-section-box:last-child {
    border-bottom: none;
}

.checkout-section-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

/* Auth Box */
.checkout-auth-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 0;
    margin-bottom: 30px;
}

.auth-box-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-box-header h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
    border: none;
    padding: 0;
}

.auth-box-header p {
    color: #666;
    font-size: 14px;
}

.auth-box-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.auth-box-actions .btn {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-box-actions .btn svg {
    flex-shrink: 0;
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-ghost:hover {
    background: var(--primary);
    color: var(--white);
}

/* Welcome Box */
.checkout-welcome-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 0;
    margin-bottom: 30px;
}

.checkout-welcome-box h3 {
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.checkout-welcome-box p {
    color: rgba(255,255,255,0.9);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-content svg {
    flex-shrink: 0;
    color: white;
}

/* Form Styles */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    background: var(--white);
    color: var(--dark);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
select.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B4513' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
}

.form-input::placeholder {
    color: #adb5bd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #dc3545;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 6px;
    font-style: italic;
}

/* Address Selector */
.address-selector {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0;
    border: 2px dashed #dee2e6;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method:hover {
    border-color: var(--primary);
    background: #fffbf7;
}

.payment-method input[type="radio"] {
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.payment-method input[type="radio"]:checked + .payment-method-label {
    color: var(--primary);
}

.payment-method:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: #fffbf7;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.payment-method-label {
    flex: 1;
}

.payment-method-label strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}

.payment-method-label small {
    display: block;
    font-size: 13px;
    color: #6c757d;
}

/* Checkout Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.order-summary {
    background: white;
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.order-summary h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.summary-items {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-item-name {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.summary-item-quantity {
    font-size: 12px;
    color: #6c757d;
}

.summary-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.summary-totals {
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
}

.summary-row.summary-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    padding-top: 20px;
    border-top: 2px solid var(--primary);
    margin-top: 10px;
}

.summary-total .cart-total {
    color: var(--primary);
    font-size: 24px;
}

.free-shipping {
    color: #28a745;
    font-weight: 600;
}

.free-shipping-notice {
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 0;
    font-size: 13px;
    color: #856404;
}

.btn-checkout {
    margin-top: 25px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-checkout:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.btn-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    border-radius: 0;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-large {
    max-width: 600px;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #adb5bd;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.modal-header p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* Guest Checkout Modal */
.guest-checkout-info {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: #495057;
    font-size: 14px;
}

.info-item:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

.modal-actions .btn {
    flex: 1;
    padding: 14px 24px;
}

/* Checkout Modal Styles - Modern Design */
.checkout-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.checkout-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.checkout-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 0;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.checkout-modal-content.modal-large {
    max-width: 650px;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.checkout-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.checkout-modal-close:hover {
    background: var(--white);
    transform: rotate(90deg);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.checkout-modal-close svg {
    width: 20px;
    height: 20px;
}

.checkout-modal-header {
    padding: 50px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    position: relative;
}

.checkout-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--white);
    border-radius: 0;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-icon svg {
    color: var(--white);
}

.checkout-modal-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.checkout-modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.checkout-modal-form {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

.checkout-modal-footer {
    padding: 25px 40px 35px;
    text-align: center;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.checkout-modal-footer p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.checkout-modal-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkout-modal-footer a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.modal-footer-link {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.modal-footer-link a {
    font-size: 13px;
    font-weight: 400;
}

.btn-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-modal-submit svg {
    transition: transform 0.3s ease;
}

.btn-modal-submit:hover svg {
    transform: translateX(3px);
}

/* Guest Checkout Info - Updated */
.guest-checkout-info {
    margin: 0;
    padding: 30px 40px;
}

.guest-checkout-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    color: var(--text);
}

.guest-checkout-info .info-item:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.guest-checkout-info .info-item svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.guest-checkout-info .info-item > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guest-checkout-info .info-item strong {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
}

.guest-checkout-info .info-item span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkout-modal-actions {
    display: flex;
    gap: 15px;
    padding: 30px 40px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.checkout-modal-actions .btn {
    flex: 1;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Auth Choice Modal */
.auth-choice-modal {
    max-width: 550px;
    padding: 0;
}

.auth-choice-actions {
    padding: 30px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-choice-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.auth-choice-btn:hover {
    border-color: var(--primary);
    background: #fffbf7;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
}

.auth-choice-btn svg {
    flex-shrink: 0;
    color: var(--primary);
}

.auth-choice-btn > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auth-choice-btn strong {
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
}

.auth-choice-btn span {
    font-size: 13px;
    color: var(--text-light);
}

.auth-choice-primary {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(210, 105, 30, 0.05) 100%);
}

.auth-choice-primary:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(210, 105, 30, 0.1) 100%);
}

.auth-choice-secondary {
    border-color: var(--secondary);
}

.auth-choice-ghost {
    border-style: dashed;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .checkout-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 0;
    }
    
    .checkout-modal-header {
        padding: 40px 25px 25px;
    }
    
    .checkout-modal-header h2 {
        font-size: 24px;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .modal-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .checkout-modal-form {
        padding: 30px 25px;
    }
    
    .checkout-modal-footer {
        padding: 20px 25px 25px;
    }
    
    .checkout-modal-actions {
        flex-direction: column;
        padding: 25px;
    }
    
    .checkout-modal-actions .btn {
        width: 100%;
    }
    
    .auth-choice-actions {
        padding: 25px 20px 30px;
    }
    
    .auth-choice-btn {
        padding: 18px 20px;
    }
    
    .guest-checkout-info {
        padding: 25px 20px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 120px 0 60px;
    }
    
    .checkout-section-box {
        padding: 25px 20px;
    }
    
    .auth-box-actions {
        flex-direction: column;
    }
    
    .auth-box-actions .btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
}

/* Order Success Page - Modern Design */
.order-success-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.order-success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(210, 105, 30, 0.05) 100%);
    pointer-events: none;
}

.order-success-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    border: 5px solid var(--white);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25), 0 0 0 0 rgba(139, 69, 19, 0.1);
    position: relative;
    animation: successPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.success-icon::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 3px solid var(--primary);
    opacity: 0.2;
    animation: rotate 3s linear infinite;
}

.success-icon::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--primary);
    opacity: 0.1;
    animation: rotate 4s linear infinite reverse;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25), 0 0 0 0 rgba(139, 69, 19, 0.1);
    }
    50% {
        box-shadow: 0 12px 40px rgba(139, 69, 19, 0.35), 0 0 0 10px rgba(139, 69, 19, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.order-success-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.success-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.order-details-box {
    background: var(--white);
    border: 2px solid #e9ecef;
    padding: 0;
    margin-bottom: 35px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    text-align: left;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.order-details-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.order-details-box:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.order-info-header {
    padding: 35px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.order-info-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.order-info-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-info-header h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--white);
    margin-right: 12px;
    vertical-align: middle;
}

.order-number {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-number strong {
    font-size: 20px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1.5px;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    padding: 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.order-info-item {
    padding: 30px 40px;
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.order-info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-info-item:hover {
    background: rgba(139, 69, 19, 0.02);
}

.order-info-item:hover::before {
    opacity: 1;
}

.order-info-item:last-child {
    border-right: none;
}

.info-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.order-items-box {
    background: var(--white);
    border: 2px solid #e9ecef;
    padding: 0;
    margin-bottom: 35px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    text-align: left;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.order-items-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.order-items-box:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.order-items-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    padding: 35px 40px;
    margin: 0;
    border-bottom: 3px solid var(--primary);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.order-items-box h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--primary);
    margin-right: 12px;
    vertical-align: middle;
}

.order-items-list {
    padding: 25px 40px;
    max-height: 450px;
    overflow-y: auto;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.order-items-list::-webkit-scrollbar {
    width: 6px;
}

.order-items-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.order-items-list::-webkit-scrollbar-thumb {
    background: var(--primary);
}

.order-items-list::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.order-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.order-item:hover {
    padding-left: 15px;
    background: rgba(139, 69, 19, 0.02);
}

.order-item:hover::before {
    height: 60%;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.order-item-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.2px;
}

.order-item-quantity {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.order-item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: var(--white);
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    border-top: 2px solid #e9ecef;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
}

.order-total > span:first-child {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
}

.order-total > span:last-child {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0;
    text-transform: none;
}


.payment-info-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 3px solid #ffc107;
    padding: 35px 40px;
    margin-bottom: 35px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.2), 0 2px 8px rgba(255, 193, 7, 0.1);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    transition: all 0.3s ease;
}

.payment-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
}

.payment-info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(255, 193, 7, 0.3), 0 4px 16px rgba(255, 193, 7, 0.15);
}

.payment-info-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.payment-info-box h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #ffc107;
    margin-right: 12px;
    vertical-align: middle;
}

.payment-info-box p {
    font-size: 16px;
    color: #856404;
    line-height: 1.7;
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-info-box p:last-child {
    margin-bottom: 0;
}

.payment-info-box strong {
    color: var(--dark);
    font-weight: 800;
    background: rgba(139, 69, 19, 0.1);
    padding: 2px 8px;
    letter-spacing: 0.5px;
}

.order-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.order-actions .btn {
    min-width: 220px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.order-actions .btn::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;
}

.order-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

.order-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.25);
}

.order-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    border-color: var(--dark);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.4);
}

.order-actions .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

.order-actions .btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.4);
}

@media (max-width: 768px) {
    .order-success-section {
        padding: 120px 0 60px;
    }
    
    .order-success-content h1 {
        font-size: 36px;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 56px;
    }
    
    .success-message {
        font-size: 17px;
        padding: 0 20px;
    }
    
    .order-info-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }
    
    .order-info-header h2 {
        font-size: 22px;
    }
    
    .order-number {
        width: 100%;
        justify-content: space-between;
    }
    
    .order-number strong {
        font-size: 18px;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
    }
    
    .order-info-item {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 25px;
    }
    
    .order-info-item::before {
        left: 0;
        top: 0;
        bottom: auto;
        width: 100%;
        height: 3px;
    }
    
    .order-info-item:hover::before {
        height: 3px;
    }
    
    .order-info-item:last-child {
        border-bottom: none;
    }
    
    .order-items-box h3 {
        padding: 30px 25px;
        font-size: 22px;
    }
    
    .order-items-list {
        padding: 20px 25px;
    }
    
    .order-item {
        padding: 20px 0;
    }
    
    .order-item::before {
        left: -25px;
    }
    
    .order-total {
        padding: 25px;
        font-size: 24px;
    }
    
    .payment-info-box {
        padding: 30px 25px;
    }
    
    .payment-info-box h3 {
        font-size: 22px;
    }
    
    .order-actions {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .order-actions .btn {
        width: 100%;
        min-width: auto;
    }
}
img.hero-logo-indicator {
    display: none;
}
