/* Aktsoft Kuruyemiş - One Page Türkçe E-Ticaret */
:root {
    --cream: #fbf7ef;
    --cream-2: #f3e6d6;
    --paper: #ffffff;
    --text: #3f3025;
    --muted: #826d5a;
    --line: #dfc8ad;
    --accent: #b57945;
    --accent-dark: #8f5d38;
    --green: #7b9f57;
    --green-dark: #5f813f;
    --shadow: 0 18px 48px rgba(77, 53, 31, .12);
    --shadow-soft: 0 10px 28px rgba(77, 53, 31, .08);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 92% 6%, rgba(123, 159, 87, .20), transparent 14%),
        radial-gradient(circle at 8% 88%, rgba(181, 121, 69, .13), transparent 20%),
        linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background:
        linear-gradient(135deg, transparent 0 66%, rgba(181, 121, 69, .22) 66.2% 66.8%, transparent 67%),
        linear-gradient(45deg, transparent 0 72%, rgba(181, 121, 69, .13) 72.2% 72.8%, transparent 73%);
    background-size: 420px 420px, 520px 520px;
    z-index: -2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.section { padding: 86px 0; }
.section-sm { padding: 54px 0; }
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 200;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 14px 0;
    transition: .25s ease;
}
.site-header.is-scrolled {
    background: rgba(251, 247, 239, .82);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(77, 53, 31, .08);
}
.header-inner {
    min-height: 70px;
    border: 1px solid rgba(223, 200, 173, .84);
    background: rgba(255, 255, 255, .78);
    border-radius: 0 0 22px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 18px;
    box-shadow: var(--shadow-soft);
}
.logo img { width: 205px; height: auto; }
.nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.nav a {
    font-size: .94rem;
    font-weight: 700;
    color: var(--text);
    position: relative;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent);
    transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-button,
.menu-button {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    background: #fffaf2;
    color: var(--text);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
}
.cart-button svg { width: 22px; height: 22px; }
.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
}
.menu-button { display: none; }
.menu-button span {
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    display: block;
    margin: 3px auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line);
    color: var(--accent-dark);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: .84rem;
    font-weight: 800;
}
.hero {
    padding-top: 42px;
}
.hero-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 24px;
    align-items: stretch;
}
.hero-copy,
.hero-visual {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-copy {
    padding: 42px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.45rem, 5vw, 4.8rem);
    line-height: .96;
    margin: 18px 0 16px;
    letter-spacing: -.03em;
}
.hero p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 24px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    padding: 13px 20px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 24px rgba(181, 121, 69, .22); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-soft { background: #fffaf2; color: var(--text); border-color: var(--line); }
.btn-green { background: var(--green); color: #fff; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}
.hero-stats div {
    background: #fffaf2;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
}
.hero-stats strong {
    display: block;
    font-size: 1.18rem;
}
.hero-stats span {
    display: block;
    color: var(--muted);
    font-size: .84rem;
}
.hero-visual {
    position: relative;
    min-height: 470px;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 250, 242, .94) 0%, rgba(255, 250, 242, .70) 34%, rgba(255, 250, 242, .06) 68%);
}
.visual-card {
    position: absolute;
    left: 28px;
    top: 32px;
    z-index: 2;
    width: min(310px, calc(100% - 56px));
}
.visual-card h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    margin: 0 0 10px;
}
.visual-card p { color: var(--muted); margin: 0 0 14px; }
.float-box {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    width: 240px;
    box-shadow: var(--shadow);
}
.float-box small {
    color: var(--accent-dark);
    font-weight: 800;
}
.float-box strong {
    display: block;
    margin-top: 4px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.feature-card {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff3e5;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    flex: 0 0 48px;
}
.feature-card h3 { margin: 0 0 3px; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px;
}
.section-head h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 12px 0 10px;
}
.section-head p { color: var(--muted); margin: 0; }
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}
.filter-btn {
    border: 1px solid var(--line);
    background: #fffaf2;
    color: var(--text);
    border-radius: 999px;
    padding: 10px 17px;
    font-weight: 800;
    cursor: pointer;
}
.filter-btn.is-active,
.filter-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: .22s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.product-media {
    position: relative;
    overflow: hidden;
    background: #fff8ef;
}
.product-media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform .25s ease;
}
.product-card:hover .product-media img { transform: scale(1.045); }
.product-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    color: var(--accent-dark);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .75rem;
    font-weight: 900;
}
.product-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-category {
    color: var(--accent-dark);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.product-body h3 {
    margin: 8px 0;
    font-size: 1.03rem;
    min-height: 44px;
}
.product-body p {
    color: var(--muted);
    margin: 0 0 14px;
    font-size: .9rem;
    min-height: 54px;
}
.product-bottom {
    display: grid;
    gap: 10px;
    margin-top: auto;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price {
    color: var(--accent-dark);
    font-size: 1.12rem;
    font-weight: 900;
}
.weight {
    color: var(--muted);
    font-size: .86rem;
}
.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.card-btn {
    border: 1px solid var(--line);
    background: #fffaf2;
    color: var(--text);
    border-radius: 11px;
    padding: 10px 12px;
    font-weight: 800;
    cursor: pointer;
}
.card-btn.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.card-btn.primary.is-added {
    background: var(--green);
    border-color: var(--green);
}
.promo {
    padding: 0 0 86px;
}
.promo-card {
    background: linear-gradient(110deg, rgba(255,255,255,.92), rgba(255,248,239,.82));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
}
.promo-copy { padding: 34px; }
.promo-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin: 0 0 12px;
}
.promo-copy p { color: var(--muted); }
.promo-media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: center;
}
.about-image,
.about-copy {
    background: rgba(255,255,255,.78);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}
.about-copy { padding: 34px; }
.about-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
}
.check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-dark);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.review-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
}
.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0dfcb;
    color: var(--accent-dark);
    display: grid;
    place-items: center;
    font-weight: 900;
}
.stars {
    color: var(--accent);
    letter-spacing: .08em;
    font-size: .88rem;
}
.review-card p { margin: 0; color: var(--muted); }
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr .9fr;
    gap: 18px;
}
.contact-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
}
.contact-card h3 { font-size: 1.2rem; }
.contact-card p { color: var(--muted); }
.newsletter {
    display: grid;
    gap: 10px;
}
.newsletter input,
.order-form input,
.order-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fffaf2;
    color: var(--text);
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
}
.newsletter button,
.order-form button {
    border: none;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    padding: 13px 14px;
    font-weight: 900;
    cursor: pointer;
}
.map-box iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 16px;
}
.footer {
    padding: 24px 0 34px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    color: var(--muted);
    font-size: .92rem;
}
.footer-inner strong { color: var(--accent-dark); }

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(55, 36, 21, .32);
    z-index: 120;
}
.cart-drawer,
.product-modal {
    position: fixed;
    z-index: 130;
    background: #fffaf4;
    box-shadow: -18px 0 44px rgba(55, 36, 21, .18);
}
.cart-drawer {
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100vh;
    transform: translateX(105%);
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--line);
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head {
    padding: 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.drawer-head h2 { margin: 4px 0 0; font-family: "Playfair Display", Georgia, serif; }
.icon-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 11px;
    cursor: pointer;
    font-size: 1.4rem;
}
.cart-list {
    padding: 18px 20px;
    display: grid;
    gap: 12px;
    overflow: auto;
}
.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
}
.cart-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 11px;
}
.cart-item h4 { font-size: .95rem; margin: 0 0 4px; }
.cart-item small { display: block; color: var(--muted); margin-bottom: 8px; }
.qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.qty button {
    width: 26px;
    height: 26px;
    border: 1px solid var(--line);
    background: #fffaf2;
    border-radius: 8px;
    cursor: pointer;
}
.remove {
    border: none;
    background: transparent;
    color: #b25a45;
    cursor: pointer;
    font-weight: 800;
}
.drawer-foot {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding: 20px;
}
.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.08rem;
    margin-bottom: 14px;
}
.checkout-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
}
.order-form {
    display: grid;
    gap: 10px;
}
.empty-cart {
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: 16px;
    text-align: center;
    color: var(--muted);
    padding: 20px;
}
.product-modal {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.96);
    width: min(920px, calc(100% - 28px));
    max-height: calc(100vh - 28px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
}
.product-modal.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.modal-grid {
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    gap: 18px;
    padding: 20px;
}
.modal-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--line);
}
.modal-content { padding: 12px 8px; }
.modal-content h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
}
.modal-price {
    color: var(--accent-dark);
    font-size: 1.45rem;
    font-weight: 900;
    margin: 14px 0;
}
.modal-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}
.modal-meta div {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    padding: 12px;
}
.modal-meta strong { display: block; }
.modal-close {
    position: sticky;
    top: 12px;
    float: right;
    z-index: 2;
    margin: 12px 12px 0 0;
}
[hidden] { display: none !important; }
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .promo-card,
    .about-grid,
    .contact-grid,
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .float-box { position: static; width: auto; margin: 14px; }
}
@media (max-width: 880px) {
    .menu-button { display: inline-grid; }
    .nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        background: rgba(255, 250, 242, .98);
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 16px;
        box-shadow: var(--shadow);
    }
    .nav.is-open { display: flex; }
    .header-inner { position: relative; }
    .products-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .container { width: min(var(--container), calc(100% - 20px)); }
    .section { padding: 64px 0; }
    .section-sm { padding: 42px 0; }
    .header-inner { padding: 8px 10px; min-height: 60px; }
    .logo img { width: 162px; }
    .hero { padding-top: 18px; }
    .hero-copy { padding: 28px 20px; }
    .hero h1 { font-size: 2.25rem; }
    .hero-visual,
    .hero-visual img {
        min-height: 320px;
    }
    .visual-card { left: 20px; top: 20px; }
    .hero-stats,
    .products-grid,
    .features-grid,
    .reviews-grid,
    .modal-meta {
        grid-template-columns: 1fr;
    }
    .product-actions {
        grid-template-columns: 1fr;
    }
    .promo-copy,
    .about-copy {
        padding: 22px;
    }
    .promo-media img,
    .about-image img,
    .modal-grid img {
        height: 280px;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item {
        grid-template-columns: 64px 1fr;
    }
    .remove {
        grid-column: 2;
        justify-self: start;
    }
}
