/* AtÃ¶lye AltÄ±n ana stil dosyasÄ± */

:root {
    --bg: #f7f4ef;
    --bg-alt: #fffaf0;
    --text: #1f1d1d;
    --muted: #6f6b63;
    --border: #e4dfd6;
    --accent: #d4af37;
    --accent-dark: #b58f1e;
    --shadow: 0 24px 60px rgba(31, 29, 29, 0.08);
    --radius: 18px;
    --surface: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 64px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 32px;
    margin: 0 0 8px;
}

.section-header p {
    color: var(--muted);
    margin: 0;
}

.link {
    font-weight: 600;
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--accent);
    color: #111;
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero {
    padding: 72px 0 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-media img {
    border-radius: 28px;
    box-shadow: var(--shadow);
    object-fit: cover;
    height: auto;
}

.hero-media {
    position: relative;
}

.hero-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin: 16px 0;
}

.hero-content p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 24px;
}

.hero-eyebrow {
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.card {
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(31, 29, 29, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(31, 29, 29, 0.12);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 20px 22px;
}

.card-body h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.card-body .meta {
    color: var(--muted);
    font-size: 14px;
}

.card-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: var(--accent-dark);
}

.product-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.step {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 18px 46px rgba(31, 29, 29, 0.08);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #111;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.trust-card {
    padding: 24px;
    background-color: var(--surface);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 12px 26px rgba(31, 29, 29, 0.08);
}

.trust-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background-color: rgba(247, 244, 239, 0.9);
    z-index: 20;
    border-bottom: 1px solid rgba(228, 223, 214, 0.7);
}

.top-notice {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--muted);
    font-size: 13px;
    padding: 6px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: var(--accent);
    color: #111;
    border-radius: 12px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 999px;
    transition: background-color 0.2s ease;
}

.main-nav a:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-actions {
    display: flex;
    gap: 12px;
}


.icon-link {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface);
    transition: border-color 0.2s ease;
}

.icon-link:hover {
    border-color: var(--accent);
}

.icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.icon-bag.has-items::after {
    content: attr(data-count);
    position: absolute;
    top: -6px;
    right: -10px;
    transform: translate(50%, -50%);
    background-color: var(--accent);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
}

.icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}

.icon-theme::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231f1d1d' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M17 7a5 5 0 010 10'/%3E%3Cpath d='M7 7a5 5 0 000 10'/%3E%3C/svg%3E");
}

.icon-search::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231f1d1d' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cline x1='17' y1='17' x2='22' y2='22'/%3E%3C/svg%3E");
}

.icon-user::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231f1d1d' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c0-4 4-7 8-7s8 3 8 7'/%3E%3C/svg%3E");
}

.icon-bag::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231f1d1d' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 7h12l1 13H5L6 7z'/%3E%3Cpath d='M8 7V5a4 4 0 018 0v2'/%3E%3C/svg%3E");
}

.icon-close::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231f1d1d' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: none;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.search-overlay.active {
    display: flex;
}

.search-box {
    background-color: var(--surface);
    padding: 32px;
    border-radius: 24px;
    position: relative;
    width: min(600px, 90vw);
    box-shadow: var(--shadow);
}

.search-box form {
    display: flex;
    gap: 12px;
}

.search-box input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

.site-main {
    padding-bottom: 80px;
}

.site-footer {
    background-color: var(--surface);
    padding: 56px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-top: 0;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 180px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Koleksiyon sayfasÄ± */
.collection-page {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 56px 0;
}

.filters {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
    height: fit-content;
}

.filters h2 {
    margin-top: 0;
}

.filter-group {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.filter-title {
    font-weight: 600;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.filter-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.price-range {
    width: 100%;
}

.price-range-value {
    font-size: 14px;
    color: var(--muted);
}

.filter-chip {
    width: 100%;
}

.collection-topbar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.search-form {
    display: flex;
    gap: 12px;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.tab-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tab-button {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    padding: 8px 16px;
    cursor: pointer;
}

.tab-button.active {
    border-color: var(--accent);
    color: var(--accent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.empty-state {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    color: var(--muted);
    box-shadow: var(--shadow);
}

/* ÃœrÃ¼n sayfasÄ± */
.product-page {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    padding: 64px 0;
}

.product-gallery {
    background-color: var(--surface);
    border-radius: 32px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.product-main-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 520px;
}

.product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumb-button {
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 4px;
    background: none;
    cursor: pointer;
}

.thumb-button.active {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.12);
}

.thumb-button img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

.product-info h1 {
    font-size: 36px;
    margin-top: 0;
}

.product-meta {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.product-price span {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-dark);
}

.product-actions {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(140px, auto));
    align-items: center;
    margin: 24px 0;
}

.product-actions select,
.product-actions .input {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.product-customize {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-customize form {
    display: grid;
    gap: 16px;
}

.product-customize .input,
.product-customize select {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

/* Ã–zel tasarÄ±m */
.custom-design-page {
    padding: 64px 0;
    display: grid;
    gap: 32px;
}

.custom-design-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background-color: var(--surface);
    font-family: inherit;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.file-label {
    font-weight: 600;
}

.dropzone {
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 32px;
    background-color: var(--surface);
    text-align: center;
    display: grid;
    gap: 18px;
}

.dropzone.dragover {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.06);
}

.dropzone input[type="file"] {
    display: none;
}

.dropzone-files {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
}

.price-guide {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.price-guide table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.price-guide td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
}

.price-guide tr:last-child td {
    border-bottom: none;
}

.submit {
    justify-self: end;
}

/* Sepet */
.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
}

.cart-page {
    padding: 64px 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.cart-table-wrapper {
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}

.order-summary {
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    display: grid;
    gap: 12px;
    align-self: start;
}

.summary-row {
    display: flex;
    justify-content: space-between;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
}

.summary-actions {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.hidden {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    bottom: 24px;
    inset-inline: 0;
    z-index: 40;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.cookie-consent-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 20px 40px rgba(31, 29, 29, 0.1);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.legal-page {
    padding: 64px 0;
}

.legal-content {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.legal-content h2,
.legal-content h3 {
    margin-top: 24px;
}

/* Ã–deme */
.checkout-page {
    padding: 64px 0;
    display: grid;
    gap: 32px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

.checkout-form {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.checkout-form textarea,
.checkout-form input {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-family: inherit;
}

.checkout-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
}

/* HesabÄ±m */
.account-page {
    padding: 64px 0;
    display: grid;
    gap: 32px;
}

.account-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.auth-box {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.auth-box form {
    display: grid;
    gap: 16px;
}

.auth-box input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.orders {
    display: grid;
    gap: 24px;
}

.order-card {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.order-card header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.order-summary {
    gap: 8px;
}

.alert {
    padding: 16px 20px;
    border-radius: 14px;
}

.alert-success {
    background-color: #ecf8ef;
    color: #276749;
}

.alert-error {
    background-color: #fdecea;
    color: #c53030;
}

.order-items,
.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
    color: var(--muted);
    font-size: 14px;
}

.muted {
    color: var(--muted);
}

.address-block {
    white-space: pre-wrap;
    font-family: inherit;
    background-color: rgba(0, 0, 0, 0.02);
    padding: 12px;
    border-radius: 12px;
}

/* Admin */
.admin-page {
    padding: 56px 0;
    display: grid;
    gap: 32px;
}

.admin-body {
    background: #f3f1ea;
}

.admin-header {
    background-color: rgba(243, 241, 234, 0.9);
}

.admin-footer {
    background-color: #f9f7f1;
}


.admin-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-card {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.summary-card strong {
    font-size: 32px;
}

.admin-welcome {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.admin-tips {
    padding-left: 20px;
    color: var(--muted);
}

.admin-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.admin-column {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.admin-form {
    display: grid;
    gap: 14px;
}

.admin-form fieldset {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.admin-form legend {
    font-weight: 600;
    padding: 0 6px;
}

.admin-form input,
.admin-form textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-family: inherit;
}

.table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.admin-table th {
    text-align: left;
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-product img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
}

.inline-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.status.active {
    background-color: rgba(39, 174, 96, 0.15);
    color: #1e8449;
}

.status.passive {
    background-color: rgba(231, 76, 60, 0.15);
    color: #c0392b;
}

.admin-login {
    max-width: 420px;
    justify-self: center;
}

.admin-table select {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.order-items li {
    display: flex;
    justify-content: space-between;
}

/* YardÄ±mcÄ± */
.page-header h1 {
    margin-bottom: 8px;
    font-size: 40px;
}

/* Responsive */
body.dark-theme {
    --bg: #141210;
    --bg-alt: #1a1815;
    --surface: #1f1c19;
    --text: #f3efe6;
    --muted: #b9b0a2;
    --border: #3a332d;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

body.dark-theme .site-header {
    background-color: rgba(26, 23, 21, 0.9);
    border-bottom: 1px solid rgba(76, 67, 58, 0.8);
}

body.dark-theme .site-footer,
body.dark-theme .legal-content {
    border-top: 1px solid var(--border);
}

body.dark-theme .icon-theme::before {
    background-image: url('data:image/svg+xml,%3Csvg viewBox=\'0 0 24 24\' fill=\'none\' stroke=\'%23f3efe6\' stroke-width=\'2\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M12 3v18\'/%3E%3Cpath d=\'M17 7a5 5 0 010 10\'/%3E%3Cpath d=\'M7 7a5 5 0 000 10\'/%3E%3C/svg%3E');
}

body.dark-theme input,
body.dark-theme textarea,
body.dark-theme select {
    background-color: #24201c;
    color: var(--text);
    border-color: var(--border);
}

body.dark-theme .card,
body.dark-theme .auth-box,
body.dark-theme .order-card,
body.dark-theme .admin-column,
body.dark-theme .summary-card,
body.dark-theme .admin-welcome,
body.dark-theme .product-gallery,
body.dark-theme .product-customize,
body.dark-theme .cart-table-wrapper,
body.dark-theme .order-summary,
body.dark-theme .checkout-form,
body.dark-theme .filters,
body.dark-theme .cookie-consent-inner,
body.dark-theme .dropzone,
body.dark-theme .price-guide,
body.dark-theme .account-overview,
body.dark-theme .site-footer {
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

body.dark-theme .tab-button {
    border-color: var(--border);
}

body.dark-theme .tab-button.active {
    color: var(--accent);
    border-color: var(--accent);
}

body.dark-theme .cookie-consent-inner {
    border: 1px solid var(--border);
}\r\n@media (max-width: 1024px) {
    .hero-grid,
    .product-page {
        grid-template-columns: 1fr;
    }

    .hero-media img,
    .product-main-image img {
        height: auto;
    }

    .collection-page {
        grid-template-columns: 1fr;
    }

    .filters {
        position: static;
        order: 2;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .cart-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        order: 0;
    }
}

@media (max-width: 860px) {
    .main-nav ul {
        position: fixed;
        inset: 0 0 0 30%;
        flex-direction: column;
        background-color: rgba(247, 244, 239, 0.98);
        padding: 100px 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .main-nav.open ul {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .site-footer {
        padding: 40px 0 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .summary-card strong {
        font-size: 24px;
    }

    .site-header {
        backdrop-filter: blur(16px);
    }
}











.logo-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-preview-img {
    height: 48px;
    width: auto;
    border-radius: 8px;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}


