/* Import Luxury Vintage Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
    --black: #0a0a0a;
    --white: #fefefe;
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --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;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background-color: var(--cream);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    padding-top: var(--header-height);
}

/* 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%);
    color: var(--gold);
    font-size: 24px;
}

.flourish::after {
    content: '❦';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 24px;
}

/* 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: 20px 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: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.header-content nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
}

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

.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.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);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    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.3);
    transition: transform 0.3s ease;
}

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

.logo::before {
    content: '◆';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 20px;
    text-shadow: 0 0 10px var(--gold);
}

.logo::after {
    content: '◆';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 20px;
    text-shadow: 0 0 10px var(--gold);
}



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: all 0.3s ease;
    position: relative;
    font-weight: 400;
}

nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 8px 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: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.current-language:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.lang-flag {
    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: 12px;
    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: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    font-size: 13px;
    text-align: left;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    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: 1400px;
    aspect-ratio: 16/9;
    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: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header::before {
    content: '❦';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 32px;
    text-shadow: 0 0 10px var(--gold);
}

.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 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 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: 15px;
    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: 11px;
    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: 17px;
    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 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section::before {
    content: '❦';
    position: absolute;
    top: -10px;
    left: 0;
    color: var(--gold);
    font-size: 20px;
    text-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: -20px;
    color: var(--gold);
    font-size: 18px;
}

.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: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.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%);
    color: var(--gold);
    font-size: 24px;
    text-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: all 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);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-shadow: none;
}

/* 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: 12px;
}

.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: 12px;
    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: 12px;
    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: 40px 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;
}

.breadcrumb-nav a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.breadcrumb-separator {
    color: var(--gold);
    font-weight: bold;
}

.breadcrumb-current {
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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;
}

.main-image {
    position: relative;
    aspect-ratio: 9/16;
    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;
}

.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;
    gap: 15px;
    justify-content: center;
}

.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: 12px;
    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: 18px;
    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: 16px;
    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: 12px;
    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;
}

.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: 12px;
}

.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: 500px;
    overflow: hidden;
    position: relative;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-detail-content:hover .blog-detail-image img {
    transform: scale(1.05);
}

.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: 19px;
    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: 12px;
    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: 12px;
    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: 10px;
    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: 15px;
    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(3, 1fr);
        gap: 30px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .blog-grid,
    .blog-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

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

    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-content nav {
        margin-right: 0;
        justify-content: center;
    }
    
    .language-selector {
        margin-left: 0;
        margin-right: 0;
        order: -1;
    }
    
    .current-language {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .lang-flag {
        font-size: 14px;
    }
    
    .language-menu {
        right: 50%;
        transform: translateX(50%) translateY(-10px);
        min-width: 160px;
    }
    
    .language-selector.open .language-menu {
        transform: translateX(50%) translateY(0);
    }
    
    .lang-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .lang-btn .lang-flag {
        font-size: 13px;
    }

    .logo {
        gap: 12px;
    }

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

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

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

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    nav a {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .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: 4/3;
        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 h2 {
        font-size: 36px;
        letter-spacing: 2px;
    }

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

    .section-header h2::before {
        left: -30px;
        font-size: 18px;
    }

    .section-header::after {
        right: calc(50% - 120px);
        font-size: 18px;
    }

    .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: 12px;
        padding: 12px 20px;
        letter-spacing: 1px;
    }

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

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

    .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: 12px;
        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;
    }

    .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: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .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: 30px 0;
    }

    .breadcrumb-nav {
        font-size: 12px;
        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: 300px;
    }

    .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: 17px;
    }

    .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;
    }
}

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

    .logo {
        gap: 8px;
        flex-direction: column;
    }

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

    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .hero-slider {
        width: calc(100% - 20px);
        margin: 15px auto 30px auto;
        aspect-ratio: 1/1;
        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 h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .section-header h2::before {
        left: -25px;
        font-size: 16px;
    }

    .section-header::after {
        right: calc(50% - 100px);
        font-size: 16px;
    }

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

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

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

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

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

    .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: 11px;
        padding: 10px 15px;
        letter-spacing: 0.5px;
    }

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

    .blog-filter-btn {
        font-size: 11px;
        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: 12px;
        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: 250px;
    }

    .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: 16px;
        padding-left: 20px;
    }

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

    .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: 11px;
    }

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

    .btn-back-to-blog {
        padding: 12px 25px;
        font-size: 12px;
        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: 12px;
    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"] {
    display: none;
}

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

.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: 768px) {
    .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;
    }

    .contact-icon {
        align-self: 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;
    }

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

    .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: 768px) {
    .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;
    }

    .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: 768px) {
    .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;
    }
}