:root {
    --cream:#F9F5EF;
    --ivory:#FFFDFC;
    --blush:#F6E6E8;
    --rose:#D7A5AE;
    --rose-dark:#B96F75;
    --charcoal:#3F332F;
    --soft-charcoal:#4A403D;
    --gold:#C7B299;
    --line:#eadfda;
    --muted:#746760;
    --shadow:0 18px 45px rgba(63,51,47,.10);
    --font-heading:'Cormorant Garamond',Georgia,'Times New Roman',serif;
    --font-body:'Inter',Arial,Helvetica,sans-serif;
}

* {
    box-sizing:border-box;
}

body {
    margin:0;
    font-family:var(--font-body);
    background:var(--ivory);
    color:var(--charcoal);
    line-height:1.55;
    font-weight:400;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

a {
    color:inherit;
    text-decoration:none;
}

img {
    max-width:100%;
    display:block;
}

.container {
    width:min(1440px,94%);
    margin:0 auto;
}

h1,h2,h3,p {
    margin-top:0;
}

h1,h2 {
    font-family:var(--font-heading);
    font-weight:600;
    letter-spacing:-.025em;
}

h1 {
    font-size:clamp(42px,5.8vw,76px);
    line-height:1.06;
}

h2 {
    font-size:clamp(27px,2.5vw,38px);
    line-height:1.08;
}

h3 {
    font-size:18px;
    font-family:var(--font-heading);
    font-weight:600;
    letter-spacing:-.01em;
}

.btn,
button {
    border:0;
    cursor:pointer;
    text-transform:uppercase;
    font-weight:800;
    font-size:13px;
    letter-spacing:.04em;
}

.btn.primary,
button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 24px;
    border-radius:3px;
    background:var(--rose-dark);
    color:#fff;
}

.btn.primary:hover,
button:hover {
    background:#a95f66;
}

.top-band {
    height:34px;
    background:linear-gradient(90deg,#e7c8c8,#f1dfd9,#dfcfc2);
    font-size:13px;
    color:#332825;
}

.top-band-inner {
    height:34px;
    display:flex;
    align-items:center;
    justify-content:space-around;
    gap:16px;
}

.site-header {
    background:rgba(255,253,252,.96);
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid rgba(234,223,218,.7);
}

.header-inner {
    height:95px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:18px;
}

.brand {
    text-align:center;
    line-height:.82;
    letter-spacing:.05em;
}

.brand strong {
    font-size:41px;
    font-weight:500;
    font-family:var(--font-body);
    letter-spacing:.04em;
}

.brand span {
    font-size:28px;
}

.brand small {
    display:block;
    margin-top:10px;
    font-size:10px;
    letter-spacing:.2em;
    color:var(--muted);
}

.main-nav {
    display:flex;
    align-items:center;
    gap:35px;
    font-size:14px;
    font-weight:500;
    letter-spacing:.015em;
}

.main-nav a {
    white-space:nowrap;
    position:relative;
    padding:4px 0;
}

.main-nav a:after {
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:-4px;
    height:1px;
    background:var(--rose-dark);
    transform:scaleX(0);
    transform-origin:center;
    transition:.22s ease;
}

.main-nav a:hover {
    color:var(--rose-dark);
}

.main-nav a:hover:after {
    transform:scaleX(1);
}

.header-actions {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:24px;
    font-size:34px;
    line-height:1;
}

.header-actions a {
    position:relative;
}

.bag span {
    position:absolute;
    right:-10px;
    top:-7px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--rose);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:12px;
    font-family:var(--font-body);
}

.menu-toggle {
    display:none;
    background:transparent;
    color:var(--charcoal);
    padding:0;
    font-size:28px;
    min-height:0;
}

.home-hero {
    background:var(--cream);
}

.hero-photo {
    height:455px;
    position:relative;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg,rgba(250,244,237,.95) 0%,rgba(250,244,237,.68) 35%,rgba(90,54,34,.12) 58%,rgba(29,20,14,.28) 100%),
        linear-gradient(110deg,#f2e5d8 0%,#ddc7b3 38%,#8d6041 70%,#3d2b21 100%);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}


.hero-copy {
    position:relative;
    z-index:2;
}

.hero-copy h1{
    font-family:var(--font-hero);
    font-size:72px;
    line-height:0.95;
    font-weight:500;
    color:#ffffff;
    max-width:620px;
    margin:0 0 24px;
    text-shadow:
        0 2px 8px rgba(0,0,0,.35),
        0 8px 30px rgba(0,0,0,.25);
}

.hero-copy p{
    font-family:var(--font-body);
    font-size:28px;
    line-height:1.5;
    font-weight:400;
    color:#ffffff;
    max-width:520px;
    margin-bottom:32px;
    text-shadow:
        0 2px 8px rgba(0,0,0,.35),
        0 8px 24px rgba(0,0,0,.25);
}

.home-hero .btn.primary{
    background:#D7A5AE;
    border:1px solid rgba(255,255,255,.25);
    min-height:54px;
    padding:0 32px;
    font-size:14px;
    font-weight:700;
}

.home-hero .btn.primary:hover{
    background:#c98e99;
}

.section {
    padding:45px 0;
}

.center-title {
    text-align:center;
    margin-bottom:22px;
}

.center-title h2,
.section-head h2 {
    font-size:34px;
    font-weight:600;
    letter-spacing:-.01em;
    margin-bottom:2px;
    text-transform:none;
}

.center-title h2:before,
.center-title h2:after,
.section-head h2:before,
.section-head h2:after {
    content:"";
    display:inline-block;
    width:62px;
    height:1px;
    background:var(--rose);
    vertical-align:middle;
    margin:0 18px;
}

.center-title p {
    color:var(--muted);
    font-size:15px;
}

/* ATMOSFERLER - ADMIN GÖRSELİ İLE ÇALIŞIR */

.atmosphere-section {
    padding:42px 0 36px;
    background:#fffdfb;
}

.atmosphere-section .center-title {
    margin-bottom:24px;
}

.atmosphere-section .center-title h2 {
    font-family:var(--font-heading);
    font-size:34px;
    font-weight:600;
    letter-spacing:-.01em;
    text-transform:none;
    color:var(--charcoal);
}

.atmosphere-section .center-title p {
    font-size:15px;
    color:#5f514b;
    margin-top:4px;
}

.atmosphere-visual-grid {
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:16px;
}

.atmosphere-visual {
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    height:214px;
    overflow:hidden;
    border-radius:4px;
    background:#3b2c24;
    color:#fff;
    text-align:center;
    padding:0 12px 24px;
    border:1px solid rgba(234,223,218,.7);
    box-shadow:0 5px 18px rgba(63,51,47,.08);
}

.atmosphere-photo {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
    transition:transform .35s ease;
}

.atmosphere-visual:before {
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        180deg,
        rgba(20,12,8,.03) 0%,
        rgba(28,17,12,.18) 46%,
        rgba(27,15,9,.74) 100%
    );
}

.atmosphere-visual strong {
    position:relative;
    z-index:2;
    display:block;
    font-size:18px;
    font-family:var(--font-body);
    font-weight:700;
    line-height:1.15;
    color:#fff;
    text-shadow:0 2px 12px rgba(0,0,0,.55);
}

.atmosphere-visual:hover .atmosphere-photo {
    transform:scale(1.045);
}

.signature-section {
    padding-top:0;
}

.signature-panel {
    background:linear-gradient(90deg,#fbf4ec,#fffaf5);
    border-radius:4px;
    padding:30px 48px;
    display:grid;
    grid-template-columns:310px 1fr;
    gap:36px;
    align-items:center;
}

.signature-copy h2 {
    font-size:36px;
    letter-spacing:-.01em;
    margin-bottom:20px;
    text-transform:none;
}

.signature-copy p {
    color:#4d403b;
    margin-bottom:24px;
}

.signature-copy a {
    text-transform:uppercase;
    font-weight:800;
    font-size:14px;
}

.room-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.room-grid a {
    display:grid;
    grid-template-columns:36px 1fr;
    gap:8px;
    align-items:center;
    font-weight:700;
}

.room-grid span {
    font-size:31px;
}

.room-img,
.story-img {
    grid-column:1/-1;
    display:block;
    height:116px;
    border-radius:3px;
    background:var(--room);
    box-shadow:0 6px 15px rgba(63,51,47,.08);
}

.living {
    --room:linear-gradient(135deg,#b28b65,#ead6c2 54%,#5c402f);
}

.bedroom {
    --room:linear-gradient(135deg,#f0e5d7,#cdbda8 62%,#805d42);
}

.work {
    --room:linear-gradient(135deg,#50331f,#b78353 55%,#edcfa7);
}

.bath {
    --room:linear-gradient(135deg,#eee1d0,#d0b391 60%,#5e432f);
}

.products-section {
    padding-top:10px;
}

.section-head.row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.section-head.compact {
    margin-bottom:24px;
}

.section-head.compact h2 {
    text-align:center;
    flex:1;
}

.section-head.compact a {
    text-transform:uppercase;
    font-size:13px;
    font-weight:800;
    color:#5f514b;
}

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

.product-card {
    background:#fff;
    border:1px solid var(--line);
    box-shadow:0 2px 10px rgba(63,51,47,.03);
    overflow:hidden;
}

.product-image {
    display:block;
    height:270px;
    position:relative;
    background:linear-gradient(135deg,#efd7c8,#b57d5b);
    overflow:hidden;
}

.product-image:before {
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 34%,rgba(255,245,215,.94) 0 7%,rgba(225,165,100,.7) 8% 12%,transparent 13%),
        linear-gradient(135deg,#f3e1cf,#cda27e 52%,#75503a);
}

.product-image img {
    position:relative;
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-image img[src$="product-placeholder.svg"] {
    opacity:0;
}

.favorite {
    position:absolute;
    right:20px;
    top:16px;
    font-size:30px;
    color:var(--rose-dark);
    z-index:2;
}

.product-info {
    padding:20px 22px 24px;
}

.product-info small {
    display:block;
    text-transform:uppercase;
    font-size:12px;
    font-weight:800;
    color:#4b3e38;
    margin-bottom:3px;
}

.product-info h3 {
    font-size:22px;
    margin:0 0 4px;
}

.product-info p {
    font-size:14px;
    color:#5c504b;
    min-height:44px;
    margin-bottom:12px;
}

.rating {
    color:#f1a12b;
    font-size:16px;
    margin-bottom:17px;
}

.rating em {
    font-style:normal;
    color:#8b7b73;
    font-size:13px;
}

.card-bottom {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.card-bottom strong {
    font-size:18px;
}

.card-bottom button {
    min-height:39px;
    padding:0 18px;
    border-radius:3px;
    font-size:12px;
}

.scent-test {
    background:linear-gradient(90deg,#f3d8d5,#faebe7);
    padding:42px 0;
}

.scent-test-inner {
    display:grid;
    grid-template-columns:275px 1fr;
    gap:48px;
    align-items:center;
}

.test-copy h2 {
    font-size:36px;
    font-weight:600;
    margin-bottom:14px;
    text-transform:none;
}

.test-copy p {
    font-size:15px;
    color:#4d403b;
}

.test-steps {
    display:grid;
    grid-template-columns:1fr 28px 1fr 28px 1fr 28px 1fr;
    align-items:center;
    text-align:center;
    gap:13px;
}

.test-steps div span {
    width:94px;
    height:94px;
    margin:0 auto 12px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.54);
    font-size:34px;
}

.test-steps strong {
    display:block;
    line-height:1.25;
}

.test-steps small {
    display:block;
    border-top:1px solid rgba(63,51,47,.16);
    margin-top:13px;
    padding-top:10px;
    color:#5e514d;
}

.test-steps i {
    font-style:normal;
    color:var(--rose-dark);
    font-size:32px;
}

.stories-section {
    padding-bottom:46px;
}

.story-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.story-grid article h3 {
    font-size:22px;
    margin:15px 0 8px;
}

.story-grid article p {
    font-size:14px;
    color:#5f514b;
    margin-bottom:12px;
}

.story-grid article a {
    text-transform:uppercase;
    font-weight:800;
    font-size:13px;
}

.story-img {
    height:150px;
}

.story-img.winter {
    background:linear-gradient(135deg,#432719,#a66b39 54%,#f0b56e);
}

.story-img.gift {
    background:linear-gradient(135deg,#a77753,#dcb68d 54%,#5e3827);
}

.trust-strip {
    background:#fffaf6;
    border-top:1px solid var(--line);
    padding:24px 0;
}

.trust-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.trust-grid div {
    display:grid;
    grid-template-columns:50px 1fr;
    column-gap:14px;
    align-items:center;
}

.trust-grid span {
    grid-row:1/3;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#f3eee9;
    display:grid;
    place-items:center;
    font-size:23px;
}

.trust-grid strong {
    text-transform:uppercase;
    font-size:13px;
}

.trust-grid small {
    color:#6b5e58;
}

.site-footer {
    background:linear-gradient(135deg,#3b2d27,#241a16);
    color:#efe7df;
    padding:42px 0 0;
}

.footer-grid {
    display:grid;
    grid-template-columns:1.6fr 1fr 1.2fr 1fr 1.7fr;
    gap:32px;
}

.site-footer h3 {
    font-size:25px;
    line-height:.8;
    letter-spacing:.05em;
}

.site-footer h3 span {
    font-size:17px;
}

.site-footer h4 {
    text-transform:uppercase;
    font-size:13px;
}

.site-footer p,
.site-footer a {
    color:#d7cbc4;
    font-size:13px;
}

.site-footer a {
    display:block;
    margin:7px 0;
}

.newsletter {
    display:flex;
}

.newsletter input {
    height:40px;
    border:0;
    padding:0 14px;
    min-width:0;
    flex:1;
}

.newsletter button {
    height:40px;
    min-height:40px;
    border-radius:0;
    padding:0 18px;
}

.footer-bottom {
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:32px;
    padding:16px;
    color:#cfc0b8;
    font-size:13px;
}

.page-hero {
    padding:54px 0;
    background:linear-gradient(135deg,var(--blush),var(--cream));
}

.page-hero.small h1 {
    font-size:44px;
}

.layout-with-filter,
.cart-layout,
.checkout-layout {
    display:flex;
    align-items:flex-start;
    gap:28px;
}

.filter-box,
.summary-box,
.checkout-form,
.detail-list {
    background:#fff;
    border:1px solid var(--line);
    border-radius:4px;
    padding:22px;
}

.filter-box {
    width:240px;
    position:sticky;
    top:110px;
}

.filter-box a {
    display:block;
    margin:8px 0;
    color:var(--muted);
}

.product-grid.wide {
    grid-template-columns:repeat(3,1fr);
    flex:1;
}

.product-detail {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
}

.main-product-img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    background:var(--blush);
    border:1px solid var(--line);
}

.thumbs {
    display:flex;
    gap:10px;
    margin-top:12px;
}

.thumbs img {
    width:74px;
    height:74px;
    object-fit:cover;
    cursor:pointer;
    border:1px solid var(--line);
}

.price-line {
    font-size:30px;
    font-weight:800;
    margin:20px 0;
}

.buy-box {
    display:flex;
    gap:14px;
    align-items:end;
    margin:20px 0;
}

.buy-box input,
.qty-form input,
.checkout-form input,
.checkout-form textarea {
    width:100%;
    border:1px solid var(--line);
    padding:12px;
    background:#fff;
}

.buy-box label {
    width:110px;
}

.cart-items {
    flex:1;
}

.cart-row {
    display:grid;
    grid-template-columns:90px 1fr 130px 60px;
    gap:16px;
    align-items:center;
    background:#fff;
    border:1px solid var(--line);
    padding:14px;
    margin-bottom:12px;
}

.cart-row img {
    width:90px;
    height:90px;
    object-fit:cover;
    background:var(--blush);
}

.summary-box {
    width:330px;
}

.summary-box p {
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid var(--line);
    padding-bottom:10px;
}

.summary-box .total {
    font-size:20px;
}

.full {
    display:block;
    text-align:center;
    width:100%;
}

.checkout-form {
    flex:1;
}

.checkout-form label {
    display:block;
    margin-bottom:14px;
}

.checkout-form .check {
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.checkout-form .check input {
    width:auto;
}

.alert {
    padding:14px;
    margin-bottom:14px;
}

.alert.error {
    background:#fff0f0;
}

.alert.success {
    background:#eef8ef;
}

.empty-state {
    background:#fff;
    border:1px dashed var(--gold);
    padding:22px;
    color:var(--muted);
}

.link-btn {
    background:transparent;
    color:var(--muted);
    padding:0;
    min-height:0;
}

@media(max-width:1100px) {
    .header-inner {
        grid-template-columns:auto 1fr auto;
    }

    .brand {
        order:1;
    }

    .main-nav {
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:129px;
        background:#fff;
        padding:18px 4%;
        border-bottom:1px solid var(--line);
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .main-nav.open {
        display:flex;
    }

    .header-actions {
        font-size:24px;
    }

    .menu-toggle {
        display:block;
    }

    .atmosphere-visual-grid {
        grid-template-columns:repeat(3,1fr);
    }

    .atmosphere-visual {
        height:230px;
    }

    .signature-panel,
    .scent-test-inner {
        grid-template-columns:1fr;
    }

    .room-grid,
    .story-grid,
    .trust-grid {
        grid-template-columns:repeat(2,1fr);
    }

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

@media(max-width:700px) {
    .top-band {
        height:auto;
    }

    .top-band-inner {
        height:auto;
        padding:8px 0;
        flex-direction:column;
        gap:3px;
    }

    .header-inner {
        height:82px;
    }

    .brand strong {
        font-size:28px;
    }

    .brand span {
        font-size:19px;
    }

    .header-actions {
        gap:13px;
    }

    .home-hero .hero-photo {
        height:500px;
        background-position:center;
    }


    .hero-copy h1{
        font-size:46px;
        line-height:1.0;
    }

    .hero-copy p{
        font-size:18px;
        max-width:100%;
    }



    .center-title h2:before,
    .center-title h2:after,
    .section-head h2:before,
    .section-head h2:after {
        width:28px;
        margin:0 8px;
    }

    .atmosphere-visual-grid,
    .product-grid,
    .product-grid.wide,
    .room-grid,
    .story-grid,
    .trust-grid {
        grid-template-columns:1fr;
    }

    .atmosphere-visual {
        height:230px;
    }

    .signature-panel {
        padding:28px 20px;
    }

    .section-head.row {
        align-items:flex-start;
        flex-direction:column;
    }

    .section-head.compact h2 {
        text-align:left;
    }

    .scent-test-inner {
        gap:28px;
    }

    .test-steps {
        grid-template-columns:1fr;
        gap:18px;
    }

    .test-steps i {
        transform:rotate(90deg);
        font-size:24px;
    }

    .footer-grid {
        grid-template-columns:1fr;
    }

    .layout-with-filter,
    .cart-layout,
    .checkout-layout {
        flex-direction:column;
    }

    .filter-box,
    .summary-box {
        width:100%;
        position:static;
    }

    .product-detail {
        grid-template-columns:1fr;
    }

    .cart-row {
        grid-template-columns:74px 1fr;
    }

    .cart-row form {
        grid-column:2;
    }

    .hero-dots {
        left:45%;
    }
}