.store-hero {
    padding: 88px 0 76px;
    background:
        radial-gradient(circle at 85% 25%, rgba(198, 165, 107, 0.20), transparent 24%),
        linear-gradient(135deg, #fbfaf6 0%, #f1f4ec 100%);
}

.store-hero-compact {
    padding-bottom: 54px;
}

.store-hero h1 {
    max-width: 850px;
    margin-bottom: 20px;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.store-hero p {
    max-width: 720px;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.store-back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--afyavine-green);
    font-weight: 800;
    text-decoration: none;
}

.store-section,
.store-product-page {
    padding: 76px 0 96px;
}

.store-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.store-section-heading h2,
.store-related h2,
.store-documents h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.store-filter {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(190px, 260px) auto auto;
    gap: 10px;
    margin-bottom: 44px;
}

.store-filter input,
.store-filter select {
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #ccd6d0;
    border-radius: 999px;
    background: white;
    font: inherit;
}

.store-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.store-product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 34px rgba(7, 60, 45, 0.05);
}

.store-product-image {
    display: grid;
    place-items: center;
    height: 285px;
    padding: 20px;
    background: #f5f5ef;
    text-decoration: none;
}

.store-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-product-placeholder {
    display: grid;
    place-items: center;
    min-height: 180px;
    color: var(--afyavine-green);
    background: var(--afyavine-ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.store-product-body {
    padding: 20px;
}

.store-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.store-product-meta span {
    padding: 4px 8px;
    color: var(--afyavine-green);
    background: #edf3e9;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.store-product-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.store-product-card h3 a {
    text-decoration: none;
}

.store-product-card p {
    min-height: 48px;
    margin-bottom: 18px;
    color: #65716c;
    font-size: 0.92rem;
}

.store-product-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.store-price {
    display: block;
    color: var(--afyavine-green-deep);
    font-size: 1.06rem;
}

.stock-ok,
.stock-out {
    display: block;
    margin-top: 3px;
    font-size: 0.76rem;
    font-weight: 800;
}

.stock-ok {
    color: #19714f;
}

.stock-out {
    color: #9a3c2f;
}

.store-card-button {
    min-height: 40px;
    padding: 8px 15px;
}

.store-empty {
    grid-column: 1 / -1;
    padding: 60px 30px;
    text-align: center;
    border: 1px dashed #bfcac4;
    border-radius: 18px;
}

.store-product-page {
    background: #faf9f5;
}

.store-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: #6e7974;
    font-size: 0.88rem;
}

.store-breadcrumb a {
    color: var(--afyavine-green);
    font-weight: 800;
    text-decoration: none;
}

.store-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    margin-bottom: 52px;
}

.store-main-image {
    display: grid;
    place-items: center;
    min-height: 520px;
    padding: 36px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: white;
}

.store-main-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
}

.store-thumb-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.store-thumb {
    height: 105px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
}

.store-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-product-info {
    padding-top: 18px;
}

.store-product-info h1 {
    margin-bottom: 8px;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.store-pack {
    color: var(--afyavine-gold);
    font-weight: 800;
}

.store-lead {
    max-width: 700px;
    margin: 24px 0;
    font-size: 1.08rem;
}

.store-purchase-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0 16px;
}

.store-purchase-panel > div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
}

.store-purchase-panel small,
.store-purchase-panel strong {
    display: block;
}

.store-purchase-panel small {
    color: #75817c;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.store-purchase-panel strong {
    margin-top: 6px;
    color: var(--afyavine-green-deep);
    font-size: 1.25rem;
}

.store-phase-note {
    display: grid;
    gap: 3px;
    padding: 16px 18px;
    color: #42524c;
    background: #edf3e9;
    border-radius: 14px;
}

.store-copy-block {
    margin-top: 30px;
}

.store-copy-block h2 {
    font-size: 1.8rem;
}

.store-information-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 56px;
}

.store-information-grid article {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
}

.store-information-grid h3 {
    font-size: 1.35rem;
}

.store-documents,
.store-related {
    margin-top: 58px;
}

.store-document-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.store-document-list a {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    text-decoration: none;
}

.store-document-list span {
    color: #74817b;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.store-disclaimer {
    margin-top: 54px;
    padding-top: 20px;
    color: #6e7974;
    border-top: 1px solid var(--border);
    font-size: 0.84rem;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-category-card {
    min-height: 210px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    text-decoration: none;
    box-shadow: 0 10px 34px rgba(7, 60, 45, 0.04);
}

.home-category-card > span {
    color: var(--afyavine-gold);
    font-weight: 800;
}

.home-category-card h3 {
    margin: 42px 0 8px;
    font-size: 1.7rem;
}

.store-home-featured {
    background: #f6f5ef;
}

@media (max-width: 1060px) {
    .store-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 820px) {
    .store-filter,
    .store-product-layout,
    .home-category-grid {
        grid-template-columns: 1fr;
    }

    .store-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-main-image {
        min-height: 380px;
    }

    .store-document-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .store-product-grid,
    .store-information-grid,
    .store-purchase-panel {
        grid-template-columns: 1fr;
    }

    .store-product-image {
        height: 250px;
    }
}
