/* Optimized Font Loading - Only Essential Weights */
/* Preload critical fonts in HTML head for better performance */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #fefefe;
    --gold: #b8941f;
    --gold-dark: #9a7e1c;
    --gold-light: #f4e4a6;
    --gold-metallic: linear-gradient(135deg, #ffd700 0%, #d4af37 25%, #b8941f 50%, #d4af37 75%, #ffd700 100%);
    --light-gray: #f8f6f0;
    --dark-gray: #2c2c2c;
    --cream: #faf8f3;
    --bronze: #cd7f32;
    --header-height: 92px;
    
    /* Responsive Design Variables */
    --container-max-width: 1200px;
    --container-padding: 20px;
    --grid-gap: 30px;
    
    /* Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large-desktop: 1440px;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--cream);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    padding-top: var(--header-height);
    max-width: 100vw;
    font-size: 18px;
}

/* Local Fonts (@font-face) */
@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/playfair-display-v39-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/playfair-display-v39-latin-900.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans-v43-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans-v43-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans-v43-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* removed skip-link styles */

/* Global overflow prevention */
* {
    box-sizing: border-box;
}

.collection-grid, .blog-grid, .slides-container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--gold);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 18px;
    color: var(--white);
}

.cookie-popup-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    color: var(--gold);
    font-weight: 700;
}

.cookie-popup-body p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.cookie-category {
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 4px;
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.cookie-slider {
    width: 50px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    transition: background-color 0.3s ease;
    margin-right: 12px;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-slider {
    background: var(--gold);
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-slider::before {
    transform: translateX(26px);
}

.cookie-toggle input[type="checkbox"]:disabled + .cookie-slider {
    background: var(--gold);
    opacity: 0.7;
}

.cookie-toggle input[type="checkbox"]:disabled + .cookie-slider.essential {
    background: var(--bronze);
}

.cookie-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.cookie-category small {
    color: var(--light-gray);
    font-size: 0.7rem;
    line-height: 1.2;
    display: block;
    margin-left: 62px;
    margin-top: 2px;
}

.cookie-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.cookie-popup-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.btn-cookie-accept-all {
    background: var(--gold);
    color: var(--black);
}

.btn-cookie-accept-all:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-cookie-essential {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie-essential:hover {
    background: var(--white);
    color: var(--black);
}

.btn-cookie-customize {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-cookie-customize:hover {
    background: var(--gold);
    color: var(--black);
}

.cookie-settings-link {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.cookie-settings-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

/* Ensure horizontal layout on tablet and desktop */
@media (min-width: 769px) {
    .cookie-popup-actions {
        flex-direction: row !important;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .cookie-popup-actions button,
    .cookie-popup-actions .cookie-settings-link {
        width: auto;
        max-width: none;
        white-space: nowrap;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-popup-content {
        padding: 10px;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .cookie-category {
        padding: 6px 8px;
    }
    
    .cookie-popup-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .cookie-popup-actions button {
        width: 100%;
        max-width: 280px;
        padding: 10px 14px;
        font-size: 0.75rem;
    }
    
    .cookie-popup-header h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .cookie-popup-body p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .cookie-category small {
        margin-left: 0;
        margin-top: 2px;
        font-size: 0.65rem;
    }
    
    .cookie-toggle {
        margin-bottom: 2px;
    }
    
    .cookie-label {
        font-size: 0.8rem;
    }
    
    .cookie-settings-link {
        font-size: 0.7rem;
    }
}

/* Luxury Decorative Elements */
.decorative-border {
    position: relative;
}

.decorative-border::before,
.decorative-border::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gold-metallic);
    top: 50%;
    transform: translateY(-50%);
}

.decorative-border::before {
    left: -80px;
}

.decorative-border::after {
    right: -80px;
}

/* Ornamental Flourish */
.flourish {
    position: relative;
    display: inline-block;
}

.flourish::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

.flourish::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(44, 44, 44, 0.95) 100%);
    color: var(--white);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}

.header-content {
    max-width: min(1400px, 100vw);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}

.header-content .logo {
    flex: 0 0 auto;
}

/* Desktop navigation - only show on screens larger than 1024px */
@media (min-width: 1025px) {
    .header-content nav {
        flex: 1;
        display: flex !important;
        justify-content: flex-end;
        margin-right: 10px;
    }
    
    /* Explicitly hide hamburger menu on desktop */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* Show desktop nav */
    .desktop-nav {
        display: flex !important;
    }
}

.header-content .language-selector {
    flex: 0 0 auto;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px; /* Increased spacing between logo and text */
}

.logo img {
    height: 65px !important;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

/* Mobile touch optimization for logo */
@media (max-width: 1024px) {
    .logo {
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        touch-action: manipulation;
    }
    
    .logo:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37; /* Fallback color always visible */
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #b8941f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
    display: inline-block;
    position: relative;
    margin-left: 10px; /* Move text slightly to the right */
}

/* Fix for WebKit browsers */
@supports (-webkit-background-clip: text) {
    .logo-text {
        -webkit-text-fill-color: transparent;
    }
}

/* Fallback for non-supporting browsers */
@supports not (background-clip: text) {
    .logo-text {
        background: none;
        color: #d4af37;
    }
}

.logo-text:hover {
    transform: scale(1.02);
}

.logo::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.logo::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}



/* Desktop Navigation */
.desktop-nav {
    display: block; /* Visible by default on desktop */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
    font-weight: 400;
}

nav a:hover {
    color: var(--gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-metallic);
    transition: width 0.4s ease;
    border-radius: 1px;
}

nav a:hover::after {
    width: 100%;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 0;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.current-language:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.lang-flag {
    font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", system-ui, sans-serif;
    font-size: 16px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.lang-name {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lang-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.language-selector.open .lang-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(44, 44, 44, 0.98) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    font-size: 13px;
    text-align: left;
}

.lang-btn:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.lang-btn.active {
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold);
    position: relative;
}

.lang-btn.active::before {
    content: '✓';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-weight: bold;
}

.lang-btn .lang-flag {
    font-size: 14px;
}

.lang-btn .lang-name {
    font-weight: 500;
    flex: 1;
}

/* RTL Support for Arabic */
body.rtl {
    direction: rtl;
}

body.rtl .header-content {
    flex-direction: row-reverse;
}

body.rtl nav ul {
    flex-direction: row-reverse;
}

body.rtl .header-content nav {
    justify-content: flex-start;
    margin-right: 0;
    margin-left: 10px;
}

body.rtl .language-selector {
    margin-left: 0;
    margin-right: 0;
}

body.rtl .language-menu {
    right: auto;
    left: 0;
}

body.rtl .lang-btn {
    text-align: right;
    flex-direction: row-reverse;
}

body.rtl .lang-btn.active::before {
    right: auto;
    left: 16px;
}

/* Hero Slider */
.hero-slider {
    width: calc(100% - 60px);
    max-width: min(1400px, 100vw);
    aspect-ratio: 16/9;
    height: auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    margin: 40px auto 60px auto;
    border-radius: 20px;
    
    /* IP Çerçeve Tasarımı */
    box-shadow: 
        0 0 0 3px #000,
        0 0 0 6px #d4af37,
        0 0 0 9px #000,
        0 0 0 12px #d4af37,
        0 0 0 15px #000,
        0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border-radius: 25px;
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            #000 0deg 45deg,
            #d4af37 45deg 90deg,
            #000 90deg 135deg,
            #d4af37 135deg 180deg,
            #000 180deg 225deg,
            #d4af37 225deg 270deg,
            #000 270deg 315deg,
            #d4af37 315deg 360deg
        );
    z-index: -2;
    opacity: 0.8;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border-radius: 30px;
    background: 
        radial-gradient(circle at 25% 25%, #d4af37 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, #000 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, #000 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #d4af37 2px, transparent 2px),
        linear-gradient(45deg, 
            #000 0%, #d4af37 25%, #000 50%, #d4af37 75%, #000 100%
        );
    background-size: 40px 40px, 40px 40px, 40px 40px, 40px 40px, 100% 100%;
    z-index: -3;
    opacity: 0.6;
    filter: blur(1px);
}

/* IP Çerçeve Köşe Detayları */
.hero-slider .rope-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
}

.hero-slider .rope-corner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, #d4af37, #b8941f),
        conic-gradient(from 45deg, #000, #d4af37, #000, #d4af37);
    background-blend-mode: multiply;
}

.hero-slider .rope-corner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 40% 40%, #ffd700, #d4af37, #b8941f);
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(212, 175, 55, 0.6);
}

.hero-slider .rope-corner.top-left {
    top: -20px;
    left: -20px;
}

.hero-slider .rope-corner.top-right {
    top: -20px;
    right: -20px;
}

.hero-slider .rope-corner.bottom-left {
    bottom: -20px;
    left: -20px;
}

.hero-slider .rope-corner.bottom-right {
    bottom: -20px;
    right: -20px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-position: center center;
    filter: brightness(0.8) sepia(0.05) saturate(1.1);
    background-color: var(--black);
    display: block;
    opacity: 1;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
}

.slide img.loaded {
    opacity: 1;
}

/* Force object-fit styles */
.slide img[data-fit="cover"] {
    object-fit: cover !important;
}

.slide img[data-fit="contain"] {
    object-fit: contain !important;
}

.slide img[data-fit="fill"] {
    object-fit: fill !important;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    margin-top: 40px;
    padding: 0;
    background: transparent;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 3px;
    animation: fadeInUp 1.2s ease;
    color: var(--white);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(212, 175, 55, 0.3);
    position: relative;
}

.slide-content h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
}

.slide-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease 0.3s;
    animation-fill-mode: both;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(212, 175, 55, 0.2);
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    transition: all 0.4s ease;
    animation: fadeInUp 1.2s ease 0.6s;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-metallic);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-shadow: none;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid var(--gold);
}

.dot.active {
    background: var(--gold-metallic);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--gold);
}

/* Collection Section */
.collection {
    padding: 140px 0 120px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    margin-top: 60px;
    position: relative;
}

.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-metallic);
}

.container {
    max-width: min(1400px, 100vw);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.section-header h1,
.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header h1::after,
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-metallic);
    border-radius: 2px;
}



.section-header h1::after,
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-metallic);
    border-radius: 2px;
}



.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.product-image {
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    position: relative;
    border-radius: 13px 13px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: sepia(0.1) saturate(1.1);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-info {
    padding: 25px 20px;
    background: var(--white);
    border-radius: 0 0 13px 13px;
    position: relative;
    z-index: 1;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 2px;
    background: var(--gold-metallic);
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: var(--black);
}

.product-price {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(212, 175, 55, 0.3);
}

.product-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--dark-gray);
    margin-top: 12px;
    line-height: 1.6;
    font-style: italic;
}

/* Blog Section */
.blog {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-metallic);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.blog-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.blog-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: sepia(0.05) saturate(1.1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 35px 30px;
    position: relative;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--gold-metallic);
}

.blog-date {
    font-family: 'Libre Baskerville', serif;
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--black);
    letter-spacing: 0.5px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'Libre Baskerville', serif;
    font-size: 13px;
    color: var(--dark-gray);
}

.blog-author {
    font-weight: 600;
}

.blog-category {
    background: var(--gold-metallic);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-excerpt {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
}

.read-more {
    font-family: 'Libre Baskerville', serif;
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.read-more:hover {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    border-top: 4px solid var(--gold);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

.footer-section h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 25px;
    margin-left: 35px;
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 600;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-metallic);
    border-radius: 1px;
}

.footer-section p,
.footer-section ul {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 16px;
    margin-left: 35px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.footer-section ul li:hover {
    transform: translateX(5px);
    color: var(--gold-light);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid var(--gold);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '◆';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 16px;
    text-shadow: 0 0 8px var(--gold);
}

/* Admin Panel */
.admin-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
}

.admin-content {
    background-color: var(--white);
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 10px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Language Tabs */
.language-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.lang-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-tab:hover {
    background-color: #f5f5f5;
    color: var(--black);
}

.lang-tab.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
    background-color: #fafafa;
}

.lang-tab .lang-flag {
    font-size: 16px;
}

/* Current Language Indicator */
.current-language-indicator {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--black);
    border: 1px solid var(--gold-dark);
}

/* Main Tabs */
.main-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.main-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    justify-content: center;
}

.main-tab:hover {
    background-color: #f5f5f5;
    color: var(--black);
}

.main-tab.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
    background-color: #fafafa;
}

.main-tab span:first-child {
    font-size: 18px;
}

/* Tab Contents */
.tab-contents {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.admin-close {
    font-size: 30px;
    cursor: pointer;
    color: var(--black);
}

.admin-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 5px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-admin {
    background-color: var(--black);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-admin:hover {
    background-color: var(--gold);
}

.admin-login-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--black);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 1500;
    transition: all 0.3s ease;
}

.admin-login-btn:hover {
    background-color: var(--gold);
    transform: scale(1.1);
}

/* Collections Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--gold);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding: 0;
    background: transparent;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 4px;
    animation: fadeInUp 1.2s ease;
    color: var(--white);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(212, 175, 55, 0.3);
    position: relative;
}



.page-header-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease 0.3s;
    animation-fill-mode: both;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(212, 175, 55, 0.2);
}

.collections-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    position: relative;
}

.collections-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-metallic);
}

.filter-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
}

.filter-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
}

.filter-buttons {
    display: flex;
    gap: 20px;
}

.filter-btn {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--dark-gray);
    cursor: pointer;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-metallic);
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.product-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
}

.product-card:hover .product-overlay-content {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(-5px);
}

.btn-view-detail {
    padding: 15px 30px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--gold);
    cursor: pointer;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-view-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-metallic);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-detail:hover::before {
    left: 0;
}

.btn-view-detail:hover {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.load-more-section {
    text-align: center;
    margin-top: 70px;
    position: relative;
}

.load-more-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

/* Ana sayfadaki blog ve koleksiyon bölümleri için buton stili */
#blog .load-more-section .btn-load-more,
#collection .load-more-section .btn-load-more {
    color: var(--black);
    border-color: var(--gold);
    text-shadow: none;
}

#blog .load-more-section .btn-load-more:hover,
#collection .load-more-section .btn-load-more:hover {
    color: var(--black);
    border-color: var(--gold);
}

/* Blog ve Collection sayfalarındaki buton için özel stil */
.blog-page .load-more-section .btn-load-more,
.collections-page .load-more-section .btn-load-more {
    color: var(--black);
    border-color: var(--gold);
    text-shadow: none;
}

.blog-page .load-more-section .btn-load-more:hover,
.collections-page .load-more-section .btn-load-more:hover {
    color: var(--black);
    border-color: var(--gold);
}

.btn-load-more {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    transition: transform 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-metallic);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-load-more:hover::before {
    left: 0;
}

.btn-load-more:hover {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Active navigation state */
nav a.active {
    color: var(--gold);
}

nav a.active::after {
    width: 100%;
}

/* Blog Page Styles */
.blog-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    position: relative;
}

.blog-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-metallic);
}

.blog-filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
}

.blog-filter-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
}

.blog-filter-buttons {
    display: flex;
    gap: 20px;
}

.blog-filter-btn {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--dark-gray);
    cursor: pointer;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.blog-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-metallic);
    transition: left 0.4s ease;
    z-index: -1;
}

.blog-filter-btn:hover::before,
.blog-filter-btn.active::before {
    left: 0;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.blog-sort-options select {
    padding: 15px 25px;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--black);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.blog-sort-options select:hover,
.blog-sort-options select:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    outline: none;
}

.blog-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-bottom: 70px;
}

/* Admin Items Management Styles */
.existing-items {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.existing-items h4 {
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-size: 18px;
}

.add-new-section {
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.add-new-section h4 {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 18px;
}

.items-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--white);
}

.admin-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.admin-item:hover {
    background-color: #f5f5f5;
}

.admin-item:last-child {
    border-bottom: none;
}

.admin-item-preview {
    margin-right: 15px;
    flex-shrink: 0;
}

.admin-item-preview {
    background-color: #000;
    border-radius: 3px;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-item-preview img {
    border-radius: 3px;
    border: none;
    display: block;
}

.admin-item-info {
    flex-grow: 1;
    margin-right: 15px;
}

.admin-item-info h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--black);
}

.admin-item-info p {
    margin: 0 0 3px 0;
    color: var(--dark-gray);
    font-size: 14px;
}

.admin-item-info small {
    color: #888;
    font-size: 14px;
}

.admin-item-actions {
    flex-shrink: 0;
    display: flex;
    gap: 8px;
}

.btn-edit {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.btn-delete {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background-color: #c82333;
    transform: translateY(-1px);
}

/* File Upload Styles */
.file-upload-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-upload-container input[type="file"] {
    padding: 12px;
    border: 2px dashed var(--gold);
    border-radius: 8px;
    background-color: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.file-upload-container input[type="file"]:hover {
    border-color: var(--dark-gray);
    background-color: #f0f0f0;
}

.file-upload-container input[type="file"]:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.image-preview {
    margin-top: 15px;
    min-height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.preview-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
    width: 200px;
    height: 240px;
    box-sizing: border-box;
}

.preview-container img {
    display: block;
    border: 1px solid #ddd;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.remove-preview {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 10;
    width: 24px;
    height: 24px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-preview:hover {
    background-color: #c82333;
    transform: scale(1.1);
}

/* File input styling for better UX */
.file-upload-container input[type="file"]::file-selector-button {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.file-upload-container input[type="file"]::file-selector-button:hover {
    background-color: #b8941f;
}

/* Additional Images Container */
.additional-images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.additional-image-item {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
}

.additional-image-item .file-upload-container {
    margin-bottom: 10px;
}

.additional-image-item .image-preview {
    margin-top: 10px;
}

.additional-image-item .preview-container {
    width: 160px;
    height: 180px;
}

.additional-image-item .preview-container img {
    max-width: 100%;
    max-height: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Detail Page Styles */
.breadcrumb {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
    padding: 20px 0;
    border-bottom: 2px solid var(--gold);
}

.breadcrumb-nav {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1;
}

.breadcrumb-nav a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-separator {
    color: var(--gold);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
    font-size: 14px;
}

.breadcrumb-current {
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
}

.product-detail {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    position: relative;
}

.product-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-metallic);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.main-image {
    position: relative;
    aspect-ratio: 9/16;
    max-width: 350px;
    max-height: 620px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    background: var(--gold-metallic);
    padding: 3px;
    cursor: zoom-in;
    margin: 0 auto;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.main-image:hover .main-img {
    transform: scale(1.05);
}

.thumbnail-images {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 20px auto;
    max-width: 350px;
    width: 100%;
}

.thumbnail {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail.active {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

/* Image Zoom Overlay */
.image-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
    padding: 20px;
    box-sizing: border-box;
}

.zoom-content {
    position: relative;
    width: 80vw;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
}

.zoom-close:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

/* Product Info Detail */
.product-info-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-category {
    display: flex;
    gap: 15px;
    align-items: center;
}

.category-badge, .era-badge {
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-badge {
    background: var(--gold-metallic);
    color: var(--black);
}

.era-badge {
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.product-title-detail {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.product-price-detail {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.product-description-detail {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.product-description-detail p {
    margin-bottom: 25px;
    font-style: italic;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.spec-item {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    color: var(--dark-gray);
}

.spec-item strong {
    color: var(--black);
    font-weight: 700;
}

.product-features, .product-care, .product-contact {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
}

.product-features::before, .product-care::before, .product-contact::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
}

.product-features h3, .product-care h3, .product-contact h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
}

.product-features h3::after, .product-care h3::after, .product-contact h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-metallic);
    border-radius: 2px;
}

.product-features ul, .product-care ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-features li, .product-care li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    background: var(--gold);
    color: var(--black);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.product-care li::before {
    content: '•';
    color: var(--gold);
    font-size: 20px;
    font-weight: bold;
}

.product-contact p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--black);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-metallic);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-contact:hover::before {
    left: 0;
}

.btn-contact:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.contact-icon {
    font-size: 20px;
}

/* Related Products */
.related-products {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 4px solid var(--gold);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.related-product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.related-product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.related-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.related-product-info {
    padding: 25px;
    text-align: center;
}

.related-product-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.related-product-price {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
}

.no-related {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--dark-gray);
    font-style: italic;
    grid-column: 1 / -1;
    padding: 50px;
}

/* Blog Detail Styles */
.blog-detail {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    position: relative;
}

.blog-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-metallic);
}

.blog-detail-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    position: relative;
}

/* Desktop: widen blog detail content */
@media (min-width: 1025px) {
	.blog-detail-content {
		max-width: 1200px;
	}
}

.blog-detail-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gold-metallic);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.5;
}

.blog-detail-header {
    padding: 50px 60px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
    position: relative;
}

.blog-detail-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 60px;
    height: 3px;
    background: var(--gold-metallic);
    border-radius: 2px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
}

.blog-detail-category {
    background: var(--gold-metallic);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.blog-detail-date {
    color: var(--dark-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.blog-detail-author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--dark-gray);
    font-style: italic;
}

.blog-detail-author strong {
    color: var(--gold);
    font-weight: 700;
}

.blog-detail-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: none;
}

.blog-detail-content:hover .blog-detail-image img {
    transform: none;
}

.blog-detail-content-text {
    padding: 60px;
}

.blog-detail-excerpt {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    position: relative;
}

.blog-detail-excerpt::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.blog-detail-excerpt p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
    font-style: italic;
    padding-left: 40px;
}

.blog-detail-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.blog-detail-body p {
    margin-bottom: 25px;
    text-align: justify;
}

.blog-detail-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin: 40px 0 20px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
}

.blog-detail-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--gold-metallic);
    border-radius: 2px;
}

.blog-detail-body h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin: 30px 0 15px;
    letter-spacing: 0.5px;
}

.blog-detail-body ul, .blog-detail-body ol {
    margin: 25px 0;
    padding-left: 30px;
}

.blog-detail-body li {
    margin-bottom: 12px;
    position: relative;
}

.blog-detail-body ul li::marker {
    color: var(--gold);
    font-size: 20px;
}

.blog-detail-footer {
    padding: 50px 60px;
    background: var(--light-gray);
    border-top: 3px solid var(--gold);
}

.blog-detail-tags {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tag {
    background: var(--black);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--gold);
    color: var(--black);
}

.blog-detail-share {
    margin-bottom: 40px;
    text-align: center;
}

.blog-detail-share h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-btn.facebook:hover {
    background: white;
    color: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-btn.twitter:hover {
    background: white;
    color: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.share-btn.whatsapp:hover {
    background: white;
    color: #25d366;
}

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

.btn-back-to-blog {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--black);
    border: 3px solid var(--gold);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.4s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.btn-back-to-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-metallic);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-back-to-blog:hover::before {
    left: 0;
}

.btn-back-to-blog:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Related Posts */
.related-posts {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 4px solid var(--gold);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.related-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.related-post-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.related-post-card:hover::before {
    opacity: 1;
}

.related-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.related-post-content {
    padding: 25px;
}

.related-post-date {
    font-family: 'Libre Baskerville', serif;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--black);
    letter-spacing: 0.5px;
}

.related-post-meta {
    margin-bottom: 10px;
}

.related-post-category {
    background: var(--gold-metallic);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Libre Baskerville', serif;
}

.related-post-excerpt {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
    font-style: italic;
}

/* Blog Not Found */
.blog-not-found {
    text-align: center;
    padding: 100px 60px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.blog-not-found h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--black);
    margin-bottom: 20px;
}

.blog-not-found p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-grid,
    .blog-full-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    :root {
        --container-padding: 20px;
        --grid-gap: 25px;
    }

    body {
        padding-top: var(--header-height);
    }

    /* Hero slider mobile optimization */
    .hero-slider {
        width: calc(100% - 40px);
        margin: 20px auto 40px auto;
        border-radius: 15px;
        aspect-ratio: 16/10;
    }

    /* Desktop nav and mobile menu already handled in the main hamburger menu styles */
    
    .hamburger-line {
        width: 22px;
        height: 2px;
        background: var(--gold);
        margin: 3px 0;
        transition: all 0.3s ease;
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        gap: 20px;
    }

    .header-content .logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-content .mobile-menu-toggle {
        flex: 0 0 auto;
        order: -1;
    }

    .header-content .language-selector {
        flex: 0 0 auto;
        margin: 0;
    }

    /* Ensure mobile nav overlay works on tablets */
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(44, 44, 44, 0.98) 100%);
        backdrop-filter: blur(20px);
        z-index: 999;
        opacity: 0;
        transform: translateX(-100%);
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-nav {
        padding-top: 80px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100vh;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .mobile-nav a {
        color: var(--white);
        text-decoration: none;
        font-family: 'Libre Baskerville', serif;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        padding: 15px 30px;
        border: 2px solid transparent;
        border-radius: 25px;
        display: block;
    }

    .mobile-nav a:hover {
        color: var(--gold);
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-2px);
    }
    
    .language-selector {
        flex: 0 0 auto;
        margin: 0;
    }
    
    .current-language {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .lang-flag {
        font-size: 14px;
    }
    
    .language-menu {
        right: 0;
        transform: translateY(-10px);
        min-width: 160px;
    }
    
    .language-selector.open .language-menu {
        transform: translateY(0);
    }
    
    .lang-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .lang-btn .lang-flag {
        font-size: 13px;
    }

    .logo {
        gap: 20px; /* Increased spacing for tablet view */
    }

    .logo img {
        height: 52px !important;
    }

    .logo-text {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .logo::before,
    .logo::after {
        font-size: 16px;
    }

    .slide-content {
        margin-top: 80px;
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .hero-slider {
        width: calc(100% - 40px);
        margin: 20px auto 40px auto;
        aspect-ratio: 16/9;
        box-shadow: 
            0 0 0 2px #000,
            0 0 0 4px #d4af37,
            0 0 0 6px #000,
            0 0 0 8px #d4af37,
            0 0 0 10px #000,
            0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hero-slider::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border-radius: 15px;
        opacity: 0.6;
    }

    .hero-slider::after {
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        border-radius: 20px;
        background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px, 100% 100%;
        opacity: 0.4;
    }

    .hero-slider .rope-corner {
        width: 25px;
        height: 25px;
    }

    .hero-slider .rope-corner::after {
        width: 12px;
        height: 12px;
    }

    .hero-slider .rope-corner.top-left,
    .hero-slider .rope-corner.top-right {
        top: -12px;
    }

    .hero-slider .rope-corner.bottom-left,
    .hero-slider .rope-corner.bottom-right {
        bottom: -12px;
    }

    .hero-slider .rope-corner.top-left,
    .hero-slider .rope-corner.bottom-left {
        left: -12px;
    }

    .hero-slider .rope-corner.top-right,
    .hero-slider .rope-corner.bottom-right {
        right: -12px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 36px;
        letter-spacing: 2px;
        text-align: center;
        margin: 0 auto;
    }

    .section-header::before,
    .section-header::after {
        font-size: 20px;
    }

    .section-header h2::before {
        display: none;
    }

    .section-header::after {
        display: none;
    }

    .collection {
        padding: 100px 0 80px 0;
        margin-top: 40px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog {
        padding: 100px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-full-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-filter-section {
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
        padding: 30px 20px;
    }

    .blog-filter-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .blog-filter-btn {
        font-size: 14px;
        padding: 12px 20px;
        letter-spacing: 1px;
    }

    .blog-sort-options select {
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 30px;
    }

    .footer-section h3 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .admin-content {
        margin: 20px;
        padding: 25px;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header-content {
        padding: 0 20px;
    }

    .page-header-content h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .page-header-content h1::before,
    .page-header-content h1::after {
        font-size: 20px;
    }

    .page-header-content p {
        font-size: 18px;
    }

    .filter-section {
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
        padding: 30px 20px;
    }

    .filter-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .filter-btn {
        font-size: 14px;
        padding: 12px 20px;
        letter-spacing: 1px;
    }

    .sort-options select {
        padding: 12px 20px;
        font-size: 14px;
    }

    .file-upload-container {
        gap: 15px;
    }

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

    .preview-container img {
        max-width: 150px !important;
        max-height: auto !important;
    }

    /* Product Detail Mobile Styles */
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .main-image {
        max-width: 280px;
        max-height: 500px;
        margin: 0 auto;
    }

    .product-title-detail {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .product-price-detail {
        font-size: 28px;
    }

    .product-specs {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }

    .thumbnail-images {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 10px;
        max-width: 280px;
    }

    .thumbnail {
        flex-shrink: 0;
    }

    .contact-buttons {
        gap: 12px;
    }

    .btn-contact {
        padding: 12px 20px;
        font-size: 13px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .breadcrumb {
        padding: 15px 0;
    }

    .breadcrumb-nav {
        font-size: 14px;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Additional Images Mobile */
    .additional-images-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .additional-image-item {
        padding: 12px;
    }

    /* Blog Detail Mobile */
    .blog-detail-content {
        margin: 0 20px;
        border-radius: 15px;
    }

    .blog-detail-header {
        padding: 40px 30px 25px;
    }

    .blog-detail-header::after {
        left: 30px;
        right: 30px;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 15px;
    }

    .blog-detail-title {
        font-size: 32px;
        letter-spacing: 0.5px;
    }

    .blog-detail-image {
        height: auto;
    }

    .blog-detail-content-text {
        padding: 40px 30px;
    }

    .blog-detail-excerpt {
        padding: 20px;
        margin-bottom: 30px;
    }

    .blog-detail-excerpt::before {
        font-size: 40px;
        top: -5px;
        left: 15px;
    }

    .blog-detail-excerpt p {
        font-size: 18px;
        padding-left: 25px;
    }

    .blog-detail-body {
        font-size: 18px;
    }

    .blog-detail-body h3 {
        font-size: 24px;
        margin: 30px 0 15px;
        padding-left: 15px;
    }

    .blog-detail-body h3::before {
        width: 3px;
        height: 25px;
    }

    .blog-detail-body h4 {
        font-size: 20px;
        margin: 25px 0 12px;
    }

    .blog-detail-footer {
        padding: 40px 30px;
    }

    .blog-detail-tags {
        margin-bottom: 30px;
        justify-content: center;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .share-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 200px;
        justify-content: center;
    }

    .btn-back-to-blog {
        padding: 15px 30px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-not-found {
        padding: 60px 30px;
        margin: 0 20px;
        border-radius: 15px;
    }

    .blog-not-found h2 {
        font-size: 28px;
    }

    .blog-not-found p {
        font-size: 16px;
    }
}

/* Mobile Hamburger Menu Styles - Hidden only on large desktop */
.mobile-menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

/* Show hamburger menu on tablets and mobile (up to 1024px) */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(44, 44, 44, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav {
    padding-top: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav li {
    margin: 0;
    width: 100%;
    text-align: center;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    padding: 12px 20px;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
}

.mobile-nav a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 480px) {
    body {
        padding-top: var(--header-height);
    }

    /* Hamburger menu already visible from tablet breakpoint (1024px) */
    /* Additional mobile-specific adjustments can go here */

    /* Header layout for mobile: hamburger - logo - language */
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        gap: 15px;
    }

    .header-content .logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .header-content .mobile-menu-toggle {
        flex: 0 0 auto;
        order: -1;
    }

    .header-content .language-selector {
        flex: 0 0 auto;
        margin: 0;
        margin-right: 5px;
    }

    /* Mobile language selector - completely clean */
    .current-language {
        background: none !important;
        border: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        font-size: 14px !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .current-language:hover {
        background: none !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .lang-arrow {
        display: none !important;
    }

    .logo {
        gap: 0;
        flex-direction: row;
        justify-content: center;
    }

    .logo img {
        height: 75px !important;
    }

    /* Hide EVERLYN VINTAGE text on mobile */
    .logo-text {
        display: none;
    }

    /* Hide logo decorative elements on mobile */
    .logo::before,
    .logo::after {
        display: none;
    }

    .hero-slider {
        width: calc(100% - 20px);
        margin: 15px auto 30px auto;
        aspect-ratio: 16/9;
        border-radius: 15px;
        box-shadow: 
            0 0 0 1px #000,
            0 0 0 3px #d4af37,
            0 0 0 4px #000,
            0 0 0 6px #d4af37,
            0 0 0 7px #000,
            0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-slider::before {
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
        border-radius: 12px;
        opacity: 0.5;
    }

    .hero-slider::after {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border-radius: 15px;
        background-size: 15px 15px, 15px 15px, 15px 15px, 15px 15px, 100% 100%;
        opacity: 0.3;
    }

    .hero-slider .rope-corner {
        width: 20px;
        height: 20px;
    }

    .hero-slider .rope-corner::after {
        width: 10px;
        height: 10px;
    }

    .hero-slider .rope-corner.top-left,
    .hero-slider .rope-corner.top-right {
        top: -10px;
    }

    .hero-slider .rope-corner.bottom-left,
    .hero-slider .rope-corner.bottom-right {
        bottom: -10px;
    }

    .hero-slider .rope-corner.top-left,
    .hero-slider .rope-corner.bottom-left {
        left: -10px;
    }

    .hero-slider .rope-corner.top-right,
    .hero-slider .rope-corner.bottom-right {
        right: -10px;
    }

    .logo::before,
    .logo::after {
        font-size: 14px;
        left: -20px;
        right: -20px;
    }

    .slide-content {
        padding: 0 15px;
        margin-top: 100px;
    }

    .slide-content h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .btn-primary {
        padding: 15px 35px;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .btn-load-more {
        padding: 15px 35px;
        font-size: 13px;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .load-more-section {
        margin-top: 50px;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 28px;
        letter-spacing: 1px;
        text-align: center;
        margin: 0 auto;
    }

    .section-header h2::before {
        display: none;
    }

    .section-header::after {
        display: none;
    }

    .product-card {
        margin: 0 10px;
        border-radius: 12px;
    }

    .collection-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .collection-grid::-webkit-scrollbar {
        display: none;
    }
    
    .collection-grid .product-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        margin: 0;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .blog-grid::-webkit-scrollbar {
        display: none;
    }
    
    .blog-grid .blog-card {
        flex: 0 0 300px;
        scroll-snap-align: center;
        margin: 0;
        border-radius: 12px;
    }
    
    .blog-full-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Carousel Navigation Arrows */
    .carousel-container {
        position: relative;
    }
    
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: var(--gold-metallic);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        transition: all 0.3s ease;
        opacity: 0.8;
    }
    
    .carousel-arrow:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }
    
    .carousel-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .carousel-arrow-left {
        left: -10px;
    }
    
    .carousel-arrow-right {
        right: -10px;
    }
    
    .carousel-arrow::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
    }
    
    .carousel-arrow-left::after {
        border-left: 8px solid transparent;
        border-right: 15px solid var(--white);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: -2px;
    }
    
    .carousel-arrow-right::after {
        border-left: 15px solid var(--white);
        border-right: 8px solid transparent;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-right: -2px;
    }
    
    .carousel-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: translateY(-50%) scale(0.9);
    }
    
    .carousel-arrow:disabled:hover {
        transform: translateY(-50%) scale(0.9);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .page-header-content h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .page-header-content h1::before,
    .page-header-content h1::after {
        font-size: 16px;
        left: -30px;
        right: -30px;
    }

    .page-header-content p {
        font-size: 16px;
    }

    .filter-section {
        padding: 25px 15px;
    }

    .filter-btn {
        font-size: 14px;
        padding: 10px 15px;
        letter-spacing: 0.5px;
    }

    .blog-filter-section {
        padding: 25px 15px;
    }

    .blog-filter-btn {
        font-size: 14px;
        padding: 10px 15px;
        letter-spacing: 0.5px;
    }

    .footer-section h3 {
        font-size: 18px;
        letter-spacing: 1px;
        margin-left: 25px;
    }

    .footer-section p,
    .footer-section ul {
        font-size: 14px;
        margin-left: 25px;
    }

    .btn-load-more {
        padding: 12px 25px;
        font-size: 14px;
        letter-spacing: 1.5px;
        border-width: 2px;
    }

    .load-more-section {
        margin-top: 40px;
        padding: 0 15px;
    }

    .load-more-section::before {
        font-size: 18px;
        top: -25px;
    }

    /* Blog Detail Small Mobile */
    .blog-detail-content {
        margin: 0 15px;
        border-radius: 12px;
    }

    .blog-detail-header {
        padding: 30px 20px 20px;
    }

    .blog-detail-header::after {
        left: 20px;
        right: 20px;
    }

    .blog-detail-title {
        font-size: 26px;
        letter-spacing: 0px;
    }

    .blog-detail-image {
        height: auto;
    }

    .blog-detail-content-text {
        padding: 30px 20px;
    }

    .blog-detail-excerpt {
        padding: 15px;
        margin-bottom: 25px;
    }

    .blog-detail-excerpt::before {
        font-size: 35px;
        left: 10px;
    }

    .blog-detail-excerpt p {
        font-size: 18px;
        padding-left: 20px;
    }

    .blog-detail-body {
        font-size: 18px;
    }

    .blog-detail-body h3 {
        font-size: 22px;
        margin: 25px 0 12px;
        padding-left: 12px;
    }

    .blog-detail-body h4 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .blog-detail-footer {
        padding: 30px 20px;
    }

    .blog-detail-tags {
        margin-bottom: 25px;
    }

    .tag {
        padding: 6px 14px;
        font-size: 14px;
    }

    .share-btn {
        padding: 8px 16px;
        font-size: 14px;
        width: 180px;
    }

    .btn-back-to-blog {
        padding: 12px 25px;
        font-size: 14px;
        letter-spacing: 1px;
        border-width: 2px;
    }

    .blog-not-found {
        padding: 40px 20px;
        margin: 0 15px;
        border-radius: 12px;
    }

    .blog-not-found h2 {
        font-size: 24px;
    }

    .blog-not-found p {
        font-size: 15px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-metallic);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.contact-info-section,
.contact-form-section {
    position: relative;
}

.contact-cards {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover::before {
    opacity: 0.3;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 32px;
    width: 70px;
    height: 70px;
    background: var(--gold-metallic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.contact-details p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold-dark);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.contact-details small {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    color: var(--dark-gray);
    font-style: italic;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    position: relative;
    margin-top: 40px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gold-metallic);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.3;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--dark-gray);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* URL input alanları için özel stil - transform olmadan */
.form-group input[type="text"]:focus {
    transform: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background-color: var(--white);
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gold-metallic);
    border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--black);
    font-weight: bold;
    font-size: 14px;
}

.privacy-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: transparent;
    color: var(--black);
    border: 3px solid var(--gold);
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-metallic);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    margin-bottom: 100px;
}

.map-container {
    margin-top: 50px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    background: var(--gold-metallic);
    padding: 3px;
    margin-bottom: 40px;
}

.map-wrapper iframe {
    border-radius: 17px;
    display: block;
}

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

.map-info-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.map-info-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-info-card:hover::before {
    opacity: 0.3;
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.map-info-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.map-info-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
}



/* Contact Page Mobile Responsive */
@media (max-width: 1024px) {
    .contact-page {
        padding: 80px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 80px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        align-items: center;
    }

    .contact-icon {
        align-self: center;
        margin-bottom: 15px;
    }

    .contact-details {
        text-align: center;
        width: 100%;
    }

    .contact-details h3,
    .contact-details p,
    .contact-details small {
        text-align: center;
    }

    .contact-form {
        padding: 30px 25px;
        margin-top: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .btn-submit {
        padding: 15px 30px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .map-wrapper {
        margin-bottom: 30px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .map-info-card {
        padding: 25px 20px;
    }


}

@media (max-width: 480px) {
    .contact-page {
        padding: 60px 0;
    }

    .contact-info-grid {
        gap: 50px;
        margin-bottom: 60px;
    }

    .contact-card {
        padding: 20px;
        align-items: center;
    }

    .contact-icon {
        font-size: 28px;
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .contact-details {
        text-align: center;
        width: 100%;
    }

    .contact-details h3,
    .contact-details p,
    .contact-details small {
        text-align: center;
    }

    .contact-details h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-details p {
        font-size: 15px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
    }

    .btn-submit {
        padding: 12px 25px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .map-info-card {
        padding: 20px 15px;
    }

    .map-info-card h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .map-info-card p {
        font-size: 13px;
    }


}

/* About Page Styles */
.about-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    position: relative;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-metallic);
}

.about-section {
    margin-bottom: 120px;
    position: relative;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text {
    position: relative;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    background: var(--gold-metallic);
    padding: 3px;
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 17px;
    transition: transform 0.6s ease;
    filter: sepia(0.1) saturate(1.1);
}

.image-container:hover img {
    transform: scale(1.05);
}

.lead-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 1.4;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.lead-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.story-content p,
.philosophy-content p,
.location-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 25px;
    text-align: justify;
}

/* Philosophy Points */
.philosophy-points {
    margin-top: 40px;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s ease;
}

.philosophy-point::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-metallic);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-point:hover::before {
    opacity: 0.3;
}

.philosophy-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.point-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    background: var(--gold-metallic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.point-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.point-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
}

/* Team Section */
.team-section {
    text-align: center;
}

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

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gold-metallic);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: sepia(0.1) saturate(1.1);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

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

.member-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.member-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.member-bio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    font-style: italic;
}

/* Values Section */
.values-section {
    text-align: center;
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gold-metallic);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 0.3;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.value-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.value-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

/* Location Section */
.location-section .about-content {
    margin-bottom: 0;
}

.location-details {
    margin: 40px 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--gold);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.location-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: var(--gold-metallic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.location-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.location-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
}

.location-description {
    margin-top: 30px;
    font-style: italic;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Mobile Responsive for About Page */
@media (max-width: 1024px) {
    .about-page {
        padding: 80px 0;
    }

    .about-section {
        margin-bottom: 80px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }

    .about-content.reverse {
        direction: ltr;
    }

    .image-container img {
        height: 350px;
    }

    .lead-text {
        font-size: 20px;
        padding-left: 25px;
    }

    .lead-text::before {
        font-size: 35px;
        left: 0;
        top: -8px;
    }

    .story-content p,
    .philosophy-content p,
    .location-content p {
        font-size: 16px;
        text-align: left;
    }

    .philosophy-point {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .point-icon {
        align-self: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .location-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    /* Center location cards content on tablet/mobile */
    .location-item {
        align-items: center;
    }
    .location-icon {
        margin: 0 auto;
    }
    .location-content .location-info,
    .location-content .location-info p,
    .location-content .location-info div {
        text-align: center;
    }

    .location-item:hover {
        transform: translateY(-5px);
        transform: translateX(0);
    }

    .location-description {
        padding: 20px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 60px 0;
    }

    .about-section {
        margin-bottom: 60px;
    }

    .about-content {
        gap: 40px;
        margin-bottom: 30px;
    }

    .image-container img {
        height: 300px;
    }

    .lead-text {
        font-size: 18px;
        padding-left: 20px;
        margin-bottom: 25px;
    }

    .lead-text::before {
        font-size: 30px;
        top: -5px;
    }

    .story-content p,
    .philosophy-content p,
    .location-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .philosophy-point {
        padding: 15px;
        margin-bottom: 25px;
    }

    .point-icon {
        font-size: 24px;
        width: 50px;
        height: 50px;
    }

    .point-content h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .point-content p {
        font-size: 15px;
    }

    .member-info {
        padding: 25px 20px;
    }

    .member-info h4 {
        font-size: 20px;
    }

    .member-title {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .member-bio {
        font-size: 15px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .value-card h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .value-card p {
        font-size: 15px;
    }

    .location-item {
        padding: 20px 15px;
    }

    .location-icon {
        font-size: 20px;
        width: 45px;
        height: 45px;
    }

    .location-info h4 {
        font-size: 16px;
    }

    .location-info p {
        font-size: 15px;
    }

    .location-description {
        padding: 15px;
        font-size: 15px;
    }
}

/* Quill Rich Text Editor Styles */
.ql-editor {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    min-height: 180px !important;
}

.ql-toolbar {
    border-top: 1px solid #ccc !important;
    border-left: 1px solid #ccc !important;
    border-right: 1px solid #ccc !important;
    border-bottom: none !important;
    border-radius: 3px 3px 0 0 !important;
    background: #f8f8f8 !important;
}

.ql-container {
    border-bottom: 1px solid #ccc !important;
    border-left: 1px solid #ccc !important;
    border-right: 1px solid #ccc !important;
    border-top: none !important;
    border-radius: 0 0 3px 3px !important;
    font-family: 'Cormorant Garamond', serif !important;
}

.ql-editor.ql-blank::before {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    color: #999 !important;
}

.ql-editor h1, .ql-editor h2, .ql-editor h3 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    color: var(--black) !important;
}

.ql-editor strong {
    font-weight: 700 !important;
}

.ql-editor em {
    font-style: italic !important;
}

.ql-editor ul, .ql-editor ol {
    padding-left: 20px !important;
}

.ql-editor blockquote {
    border-left: 4px solid var(--gold) !important;
    padding-left: 16px !important;
    margin-left: 0 !important;
    font-style: italic !important;
    color: var(--dark-gray) !important;
}

/* Admin panel editor container */
#blogContentEditor {
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    background: white !important;
}

/* Mobile responsive for Quill editor */
@media (max-width: 1024px) {
    .ql-toolbar {
        padding: 8px !important;
    }
    
    .ql-toolbar .ql-formats {
        margin-right: 8px !important;
    }
    
    .ql-editor {
        font-size: 15px !important;
        min-height: 150px !important;
        padding: 12px !important;
    }
}

@media (max-width: 480px) {
    .ql-toolbar {
        padding: 6px !important;
        flex-wrap: wrap !important;
    }
    
    .ql-toolbar .ql-formats {
        margin-right: 6px !important;
        margin-bottom: 4px !important;
    }
    
    .ql-editor {
        font-size: 14px !important;
        min-height: 120px !important;
        padding: 10px !important;
    }
}

/* Modern CSS Utilities and Performance Optimizations */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible for Accessibility */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

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

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

/* Firefox Scrollbar - only apply to scrollable elements */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--light-gray);
}

/* Enhanced Mobile Experience */
@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
        --grid-gap: 20px;
        --header-height: 80px;
    }
    
    body {
        font-size: 18px; /* Prevent zoom on iOS */
        padding-top: var(--header-height);
    }
    
    /* Improved tap targets */
    button, 
    a, 
    input, 
    select, 
    textarea {
        min-height: 44px;
    }
}

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

/* SEO Optimized Styles */
.why-vintage {
    padding: 60px 0;
    background: #faf8f3;
}

.why-vintage h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.why-vintage p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    line-height: 1.8;
    font-size: 20px;
}

.why-vintage p + p {
    margin-top: 20px;
}

.services {
    padding: 60px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 20px;
}

.service-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 17px;
}

.curated-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    color: #666;
    line-height: 1.7;
    font-size: 19px;
}

.curated-title {
    text-align: center;
    color: #d4af37;
    margin: 15px 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.2em;
}

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Location Hours Styling */
[data-translate="location-hours-text"] {
    line-height: 1.6;
}

/* Accessibility Improvements - Focus States */
::focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Enhanced Button Focus States */
.btn-primary:focus,
.btn-view-detail:focus,
.btn-load-more:focus,
.btn-cookie-accept-all:focus,
.btn-cookie-essential:focus,
.btn-cookie-customize:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    box-shadow: 0 0 15px rgba(184, 148, 31, 0.4);
}

/* Link Focus States */
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Mobile Menu Toggle Focus */
.mobile-menu-toggle:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Form Element Focus Enhancement */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
}

/* Language Selector Focus */
.lang-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Japanese Language Specific Styles */
html[lang="ja"] .logo-text,
body[data-lang="ja"] .logo-text {
    font-size: 32px !important; /* Maintain consistent font size */
    font-weight: 700 !important; /* Keep consistent weight */
    letter-spacing: 3px !important; /* Keep consistent spacing */
    transform: none !important; /* Prevent any transform changes */
    -webkit-text-size-adjust: 100%; /* Prevent iOS text size adjustment */
    text-size-adjust: 100%;
}

/* Ensure Japanese doesn't affect logo layout */
html[lang="ja"] .logo,
body[data-lang="ja"] .logo {
    gap: 30px !important; /* Maintain consistent gap */
    align-items: center !important;
}

/* Prevent font changes in Japanese */
html[lang="ja"] .logo-text::before,
html[lang="ja"] .logo-text::after,
body[data-lang="ja"] .logo-text::before,
body[data-lang="ja"] .logo-text::after {
    font-family: 'Cinzel', serif !important;
}