@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #bfa472;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-color: #f0f0f0;
    --text-muted: #888888;
    --border-color: #333333;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1), padding 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s ease;
    border-bottom: none;
}

.header.scrolled {
    background: #161616;
    /* Solid Lighter Black */
    border-bottom: none;
    padding-top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5% 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: margin-top 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 50px;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.header.scrolled .header-top {
    margin-top: -60px;
    opacity: 0;
    pointer-events: none;
}

.lang-options a {
    margin-right: 25px;
    /* Increased spacing for premium look */
    font-weight: 500;
    color: #aaa;
    transition: var(--transition);
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.lang-options a:last-child {
    margin-right: 0;
}

.lang-options a:hover,
.lang-options a.active {
    color: var(--primary-color);
}

.top-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
}

.top-social a:hover {
    color: var(--primary-color);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5% 2rem;
    transition: padding 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-main {
    padding: 1.35rem 5%;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo a {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.nav-left .nav-menu,
.nav-right .nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 1.5rem;
}

.header-icons i {
    font-size: 1.1rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}

.header-icons i:hover {
    color: var(--secondary-color);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

/* Brand Intro Section */
.brand-intro {
    padding: 6rem 5%;
    text-align: center;
    background-color: #fcfcfc;
    /* Off-white background */
    color: #1a1a1a;
}

.brand-intro .container {
    max-width: 1200px;
    /* Widened for more spread */
    margin: 0 auto;
}

.brand-text {
    font-family: 'Manrope', sans-serif;
    /* Clean sans-serif */
    font-size: 0.85rem;
    /* Smaller size */
    line-height: 2.2;
    color: #444;
    /* Dark gray text */
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid #333;
    /* Dark border */
    color: #333;
    /* Dark text */
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    transition: var(--transition);
}

/* Collection Showcase */
.collection-showcase {
    background-color: #fff;
    padding-bottom: 0;
}

.collection-header {
    text-align: center;
    padding: 4rem 5%;
    /* Reduced padding */
    max-width: 1200px;
    /* Full width */
    margin: 0 auto;
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.collection-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    max-width: 1200px;
    /* Almost full width */
    margin: 0 auto;
}

.collection-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.collection-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hotspot */
.product-hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.hotspot-dot {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.35);
    /* Soft outer halo */
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
    transition: var(--transition);
    backdrop-filter: blur(2px);
    /* Slight blur for premium feel */
}

/* ... unchanged code ... */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
        /* Reduced spread */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hotspot-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    /* Larger solid center */
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Slight depth */
}

.product-hotspot:hover .hotspot-dot {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Product Card (Hover) */
.product-card {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 15px;
    /* Spacing from dot */
    transform: translateY(-50%) translateX(20px);
    background-color: #fff;
    padding: 1.5rem;
    width: 220px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

/* Invisible bridge to prevent pointer loss during hover transfer */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    width: 20px;
    background: transparent;
}

.product-hotspot:hover .product-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.card-image {
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.btn-read-more {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #555;
    text-decoration: underline;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: #000;
}



.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

/* Catalog Section */
.catalog-section {
    padding: 4rem 5%;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.catalog-content {
    max-width: 700px;
    margin: 0 auto;
}

.catalog-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.catalog-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.btn-catalog:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.btn-catalog i {
    font-size: 1rem;
}

/* Shop By Collections */
.shop-by-collections {
    padding: 4rem 5% 0;
    /* Align with header padding */
    background-color: #fff;
}

.container-fluid {
    width: 100%;
}

.shop-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-title b {
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    border-top: 1px solid #1a1a1a;
    border-left: 1px solid #1a1a1a;
}

.category-item {
    position: relative;
    display: block;
    height: 380px;
    /* Reverted to standard height */
    background-color: #fff;
    border-right: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 0;
    /* Removed padding to maximize space */
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition);
}

.category-name {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.category-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.category-img {
    width: auto;
    height: auto;
    max-width: 90%;
    /* İstersen bunu %100 yapabilirsin */
    max-height: 90%;
    object-fit: contain;
    /* AŞAĞIDAKİ scale(1.2) DEĞERİNİ DEĞİŞTİREREK BÜYÜKLÜĞÜ AYARLAYABİLİRSİN */
    /* 1.0 = Normal, 1.5 = Çok Büyük, 0.8 = Küçük */
    transform: scale(1.4);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-arrow {
    position: absolute;
    bottom: 1.5rem;
    /* Closer to bottom */
    right: 1.5rem;
    /* Closer to right */
    font-size: 1.6rem;
    /* Bigger size */
    color: #1a1a1a;
    transform: rotate(45deg);
    /* Points South-East (Down-Right) by default */
    transition: 0.4s ease;
}



.category-item:hover .category-arrow {
    transform: rotate(-45deg);
    /* Rotates to point North-East (Up-Right) on hover */
}

/* Collection Slider */
.collection-slider-section {
    padding: 2rem 5% 4rem;
    background-color: #fff;
}

.collection-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    /* Firefox */
}

/* Hide scrollbar for Chrome/Safari/Opera */
.collection-slider::-webkit-scrollbar {
    height: 6px;
}

.collection-slider::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 4px;
}

.collection-slider::-webkit-scrollbar-track {
    background-color: #eee;
}

.slider-item {
    flex: 0 0 80%;
    /* Show part of next slide */
    max-width: 600px;
    height: auto;
    /* Allow height to adjust based on content */
    text-decoration: none;
    scroll-snap-align: center;
    border-radius: 4px;
    overflow: hidden;
    /* Removed box-shadow for cleaner look as generally requested for minimal styles */
}

.slider-img-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

.slider-img.default {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
}

.slider-img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.slider-caption {
    position: relative;
    /* Moved relative to flow below image */
    background: transparent;
    padding: 0.5rem 0 0 0;
    /* Reduced padding to sit tight under image */
    color: #1a1a1a;
    bottom: auto;
    left: auto;
    width: 100%;
    text-align: left;
    /* Ensure left alignment */
    display: flex;
    /* Make it a flexbox */
    justify-content: space-between;
    /* Space out title and arrow */
    align-items: center;
    /* Vertically align them */
}

.slider-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    /* Remove margin as flex handles layout */
    font-weight: 500;
}

.slider-arrow {
    font-size: 1.2rem;
    color: #1a1a1a;
    transform: rotate(45deg);
    /* Default: Points South-East */
    transition: 0.4s ease;
}

.slider-item:hover .slider-arrow {
    transform: rotate(-45deg);
    /* Hover: Points North-East */
}

/* Remove old button styles if present or unused */
.view-collection-btn {
    display: none;
}

.slider-item:hover .slider-img.hover {
    opacity: 1;
    /* Show hover image */
}

.slider-item:hover .slider-img.default {
    opacity: 0;
    /* Hide default image */
}

.slider-item:hover .view-collection-btn {
    opacity: 1;
    color: var(--primary-color);
    /* Highlight text on hover */
}

.slider-item:hover .view-collection-btn {
    opacity: 1;
}

@media (min-width: 992px) {
    .slider-item {
        flex: 0 0 45%;
        /* Show 2 items fully on desktop */
    }
}

/* Journal Section */
.journal-section {
    padding: 2rem 0 6rem;
    background-color: #fff;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.journal-item {
    cursor: pointer;
}

.journal-img-wrapper {
    height: 300px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.journal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journal-item:hover .journal-img {
    transform: scale(1.05);
}

.journal-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.journal-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.journal-excerpt {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {

    .collection-slider-section,
    .shop-by-collections,
    .journal-grid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.page-hero {
    height: 60vh;
    background-color: var(--bg-dark);
    /* Fallback or specific bg image */
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
}

.page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background-color: #fff;
    color: #1a1a1a;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #000;
}

.contact-form .btn-primary {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    margin-top: 1rem;
}

.contact-form .btn-primary:hover {
    background-color: #fff;
    color: #1a1a1a;
}

/* Contact Info */
.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: #555;
    margin-top: 5px;
}

.info-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.info-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    width: 100%;
    line-height: 0;
    /* Remove gap */
}

.map-section iframe {
    filter: grayscale(100%) invert(0%);
    /* Optional: B&W map style */
}

/* Footer Main */
.footer {
    padding: 4rem 5%;
    background-color: #0a0a0a;
    color: #fff;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

/* --- Corporate Page Styles --- */
.corporate-hero {
    position: relative;
    height: 500px;
    /* Increased height */
    background-image: url('../images/corporate-hero.png');
    background-color: #222;
    /* Fallback */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* Changed from fixed for better mobile support */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    /* Reset margin */
    padding-top: 80px;
    /* Add padding instead of margin to account for fixed header */
}

/* Overlay */
.corporate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay */
    z-index: 1;
}

/* .hero-overlay removed as ::before adds the overlay */

.center-content {
    position: relative;
    z-index: 2;
    /* Sit on top of overlay */
    text-align: center;
    width: 100%;
}

.corporate-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 2px;
}

/* Sub Navigation */
.sub-nav-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sub-nav-wrapper .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.sub-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    padding-bottom: 10px;
}

.sub-nav li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 10px;
    position: relative;
    transition: color 0.3s ease;
}

.sub-nav li a:hover,
.sub-nav li a.active {
    color: #fff;
}

.sub-nav li a.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    /* Align with border */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

/* Content Area */
.content-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.corporate-content {
    max-width: 900px;
    margin: 0 auto;
    color: #333;
    line-height: 1.8;
}

.corporate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.corporate-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.corporate-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
    font-family: 'Manrope', sans-serif;
}


/* --- Products Page Styles --- */
.products-page-body {
    background-color: #fff;
    color: #1a1a1a;
}

.products-main {
    min-height: 100vh;
    padding-bottom: 4rem;
}

.products-main .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: none;
    margin: 0;
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #888;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #1a1a1a;
}

.breadcrumb .separator {
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: #1a1a1a;
    font-weight: 500;
}

/* Header */
.products-header {
    margin-bottom: 3rem;
}

.page-main-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-main-desc {
    color: #555;
    max-width: 600px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Layout */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    /* Wider sidebar */
    gap: 4rem;
    /* More space between sidebar and grid */
    align-items: start;
}

/* Sidebar */
.products-sidebar {
    padding-right: 0;
}

.sidebar-section {
    margin-bottom: 2.5rem;
}

.sidebar-title {
    font-size: 0.75rem;
    text-transform: none;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0px;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    font-size: 0.9rem;
    color: #1a1a1a;
    display: block;
    transition: color 0.3s;
}

.category-list a:hover {
    color: #666;
}

.category-list a.active {
    font-weight: 400;
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.filter-name {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 1rem;
}

/* Products Content */
.products-toolbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #555;
}

.sort-box select {
    border: none;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    color: #1a1a1a;
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

/* Grid */
.product-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    /* Minimal gap for border look */
    background-color: #e0e0e0;
    /* Darker border lines */
    border: 1px solid #e0e0e0;
}

.product-card-minimal {
    background-color: #f5f5f5;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 400px;
}

.product-card-minimal:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    /* Bring above borders */
}

.minimal-img-wrapper {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.minimal-img-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card-minimal:hover img {
    transform: scale(1.08);
}

.minimal-info h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.minimal-info .price {
    font-weight: 400;
    color: #1a1a1a;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        display: none;
        /* Hide sidebar on mobile for now, or add toggle */
    }

    .product-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid-layout {
        grid-template-columns: 1fr;
    }
}


.footer-logo {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: var(--text-color);
    width: 100%;
    padding: 0.5rem 0;
    outline: none;
}

.newsletter-btn {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}