@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    --bg: #1a1a1a;
    --surface: #2d2d2d;
    --muted: #252525;
    --text: #ffffff;
    --muted-text: #b0b0b0;
    --accent: #d4a574;
    --radius: 12px;
    --shadow-lg: 0 12px 30px rgba(0,0,0,0.3);
    --shadow-sm: 0 6px 16px rgba(0,0,0,0.2);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.05)),
               url("gemini_tiziana_tirenze.png");
    background-size: cover;
    background-position: center;
    color: #111;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.hero p {
    color: var(--muted-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn, .buy {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), #a66a2a);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover, .buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Promo Section */
.promotion-wrap {
    background: #1a1a1a;
    padding: 32px 0;
}

.promo-card {
    background: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 320px; /* daha düzenli görünüm */
}

.promo-card img {
    height: 160px;
    object-fit: cover;
}

.promo-card .info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card p {
    color: #bbb;
    font-size: 0.92rem;
    margin-bottom: 12px;
}



.promotion {
    background: transparent;
    border-radius: 0;
    padding: 18px 0;
    margin: 0;
}

.promotion h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.promo-inner {
    background: transparent;
    padding: 0;
}

.promo-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 20px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 640px) {
    .promo-products {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.promo-card {
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    height: 280px;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.promo-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.promo-card .info {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 8px;
    margin: 0 0 8px 0;
}

.promo-card p {
    color: #999;
    font-size: 0.9rem;
    margin: 0 0 10px 0;
}

.promo-card .price {
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 60px 20px;
}

.feature {
    flex: 1;
    min-width: 250px;
    background: #2d2d2d;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h4 {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature p {
    color: #999;
    font-size: 0.95rem;
}

/* Product Grid */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 14px;
    text-align: center;
}

header#site-header {
  position: relative;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)) !important;
}

/* Filter Section */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 20px;
}

.filter-inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-right: 6px;
}

.filter-btn {
    background: #fff;
    color: var(--text);
    border: 1px solid #e9e9ef;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

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

.filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Footer */
footer {
    background-color: #0f0f0f;
    color: #999;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-section p {
    color: #777;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    color: #555;
    border-top: none;
}

/* Responsive */
@media (max-width: 900px) {
    .list-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .features {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .filter-inline {
        flex-wrap: wrap;
    }
}

/* Accessibility */
.skip-link {
    position: absolute;
    left: -999px;
    background: var(--accent);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 9999;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}

/* Social icons in header (global) 
header { position: relative; } */
.socials { 
    position: static; 
    margin-left: auto; 
    display: flex;
    gap: 10px;
}
.socials a{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:transparent;border:1px solid rgba(255,255,255,0.06);transition:all .14s;text-decoration:none}
.socials a svg{width:18px;height:18px;display:block;fill:currentColor}
.socials a{color:#fff}
.socials a:hover{background:rgba(255,255,255,0.04);transform:translateY(-2px)}

/* --- Perfume Page White Background Layout --- */
.perfume-page {
    background: #ffffff;
    color: #111;
    padding: 40px 0;
}

/* Layout: Sidebar + Grid */
.perfume-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar Filter */
.filter-sidebar {
    width: 220px;
    background: #f6f6f6;
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 10px;
    position: sticky;
    top: 120px; /* stays visible while scrolling */
    height: fit-content;
}

.filter-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Filter Buttons in Sidebar */
.filter-sidebar .filter-btn {
    width: 100%;
    margin-bottom: 8px;
    justify-content: center;
    display: flex;
}

/* Product Grid 4 per row */
.product-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px;
    padding: 0;
}

/* Card styling updated for white background */
.card {
    background: #ffffff;
    color: #111;
    border: 1px solid #ddd;
}

.card-content h3 {
    color: #111;
}

.card-content p {
    color: #555;
}

.gender {
    color: #333;
}

/* Responsive Handling */
@media (max-width: 1200px) {
    .product-container {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 900px) {
    .perfume-layout {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }

    .product-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .product-container {
        grid-template-columns: 1fr !important;
    }
}