/* Parfum Saytı - Responsive CSS */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --accent-color: #9FD6AE;
    --hover-color: #7FC6A6;
}

[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #1a1a1a;
    --accent-color: #ffffff;
    --hover-color: #cccccc;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loading-logo {
    height: 200px;
    width: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}


/* Top Bar */
.top-bar {
    background-color: #000000;
    padding: 0.5rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.top-bar-left {
    color: #ffffff;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-select,
.currency-select {
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: var(--accent-color);
}

/* Header */
header {
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: #000000;
    padding: 0.5rem 0;
}

.header-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    opacity: 0.3;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-divider-vertical {
    width: 1px;
    height: 30px;
    background-color: #ffffff;
    opacity: 0.3;
}

.header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 2rem;
}

.header-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.header-nav .nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

.header-nav .nav-link:hover {
    color: #9FD6AE;
}

.header-nav .nav-link i {
    font-size: 0.7rem;
}

.social-media-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-link {
    position: relative;
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    display: block;
}

.social-link img.default-img {
    /* Her iki modda da beyaz görünsün */
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

[data-theme="dark"] .social-link img.default-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

[data-theme="light"] .social-link img.default-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.social-link img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.social-link:hover img.default-img {
    opacity: 0;
}

.social-link:hover img.hover-img {
    opacity: 1;
}

.header-hours {
    color: #ffffff;
    font-size: 0.9rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link i {
    font-size: 0.7rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.header-icon:hover {
    opacity: 0.7;
}

.header-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.user-dropdown-wrapper {
    position: relative;
}

.admin-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.admin-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.user-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
}

.user-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-user-name {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.25rem;
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

.dropdown-item:hover {
    background-color: var(--bg-secondary);
}

.dropdown-item i {
    width: 14px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.cart-icon {
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    cursor: pointer;
}

.cart-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #9FD6AE;
    color: #000000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.cart-price {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

/* Cart Sidebar */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background-color: var(--bg-primary);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin: 0;
}

.cart-sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

.cart-sidebar-close:hover {
    opacity: 0.7;
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-secondary);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 1.1rem;
    margin: 0;
}

.cart-items {
    display: none;
}

.cart-items.active {
    display: block;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-brand {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cart-item-name {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.cart-item-ml {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cart-item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-primary);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.25rem;
}

.cart-item-qty-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cart-item-qty-btn:hover {
    background-color: var(--bg-secondary);
}

.cart-item-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: none;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.cart-item-remove:hover {
    opacity: 0.7;
}

.cart-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.cart-checkout-btn {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cart-checkout-btn:hover {
    background-color: #333333;
}

.cart-checkout-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Admin Orders - Responsive */
.orders-table-container {
    display: block;
}

.orders-grid {
    display: none;
}

@media (max-width: 1024px) {
    .orders-table-container {
        display: none;
    }

    .orders-grid {
        display: grid !important;
    }

    .orders-table {
        display: none;
    }
}

.orders-table tbody tr:hover {
    background-color: var(--bg-secondary);
}

.order-status-select {
    transition: background-color 0.3s ease;
}

.order-status-select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.order-status-select option {
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}

/* Toggle Button */
.tg-list {
    display: flex;
    align-items: center;
}

.tg-list-item {
    margin: 0;
    margin-right: 0.5rem;
}

.tgl {
    display: none;
}

.tgl,
.tgl:after,
.tgl:before,
.tgl *,
.tgl *:after,
.tgl *:before,
.tgl+.tgl-btn {
    box-sizing: border-box;
}

.tgl+.tgl-btn::selection {
    background: none;
}

.tgl+.tgl-btn {
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 8px;
    transition: all 0.3s ease;
}

.tgl+.tgl-btn:after,
.tgl+.tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}

.tgl+.tgl-btn:after {
    left: 0;
}

.tgl+.tgl-btn:before {
    display: none;
}

/* Theme toggle için özel stil (icon gösterimi için) */
#theme-toggle+.tgl-btn:after,
#theme-toggle+.tgl-btn:before {
    display: none;
}

.theme-icon {
    position: absolute;
    font-size: 1rem;
    color: #000000;
    transition: all 0.3s ease;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.tgl:checked+.tgl-btn .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.tgl:checked+.tgl-btn .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Light toggle stili (abonelik toggle için) */
.tgl-light+.tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 2px;
    transition: all .4s ease;
    width: 4em;
    height: 2em;
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.tgl-light+.tgl-btn:after {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    left: 0;
    border-radius: 50%;
    background: #fff;
    transition: all .2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tgl-light:checked+.tgl-btn {
    background: #9FD6AE;
}

.tgl-light:checked+.tgl-btn:after {
    left: 50%;
}

[data-theme="dark"] .tgl-light+.tgl-btn {
    background: #2a2a2a;
}

[data-theme="dark"] .tgl-light:checked+.tgl-btn {
    background: #9FD6AE;
}

/* Theme toggle için özel stil (icon gösterimi için) */
#theme-toggle.tgl-light+.tgl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 8px;
}

#theme-toggle.tgl-light+.tgl-btn:after {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    background-color: #000000;
    overflow: hidden;
    padding: 3rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/home-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    right: -200px;
    bottom: -200px;
    z-index: 3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: #ffffff;
}

.hero-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    width: auto;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary i {
    font-size: 0.8rem;
}

.btn-play {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-play:hover {
    background-color: #ffffff;
    color: #000000;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 0.25rem;
}

/* Product Card */
.hero-products {
    position: relative;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    margin-left: auto;
    border: 2px solid #000000;
}

.discount-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: #ffffff;
    color: #000000;
    padding: 0.2rem 0.7rem;
    border: 1px solid #000000;
    border-radius: 50px;
    font-weight: normal;
    font-size: 0.75rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    text-align: center;
}

.product-image {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}

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

.product-actions {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.product-actions button {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333333;
    font-size: 0.9rem;
}

.product-actions button:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.product-info {
    color: #333333;
}

.product-brand {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 0.3rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.ml-selector {
    margin-bottom: 0.75rem;
}

.ml-controls-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ml-selector label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.ml-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ml-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    user-select: none;
    padding: 0;
}

.ml-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border-color: var(--accent-color);
}

.ml-btn:active {
    transform: scale(0.95);
}

.ml-input {
    width: 50px;
    padding: 0.25rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.8rem;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}

.ml-input::-webkit-outer-spin-button,
.ml-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ml-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.ml-price-display {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.product-rating-price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
}

.product-left-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.product-rating {
    color: #000000;
    margin-bottom: 0;
    font-size: 0.85rem;
    display: flex;
    gap: 0.15rem;
    align-items: center;
    cursor: pointer;
}

.product-rating .rating-star {
    color: #000000;
    opacity: 0.3;
    transition: all 0.2s ease;
    cursor: pointer;
}

.product-rating .rating-star:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.product-rating .rating-star.active,
.product-rating .rating-star.filled {
    opacity: 1;
    color: #000000;
}

.product-rating .rating-text {
    margin-left: 0.3rem;
    font-size: 0.75rem;
    color: #666666;
    cursor: default;
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.current-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000000;
    line-height: 1.2;
}

.old-price {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    line-height: 1.2;
    opacity: 0.7;
}

.add-to-cart {
    width: auto;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #333333;
}

.add-to-cart i {
    font-size: 0.85rem;
}

.slider-nav {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.slider-nav-btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.slider-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.slider-numbers span {
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.slider-numbers span.active {
    color: var(--accent-color);
}

/* Products Section */
.products-main {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.products-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filters-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-header span:first-child {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.filter-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.filter-reset {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color 0.3s ease;
}

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

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.filter-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.price-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-input label {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.price-input input {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Products Content */
.products-content {
    width: 100%;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    color: var(--text-primary);
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-by label {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
}

.parfum-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.parfum-item {
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.parfum-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.parfum-item .product-image {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}

.parfum-item .product-image img {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
}

.parfum-item .product-actions {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 5;
}

.parfum-item .product-actions button {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.parfum-item .product-actions button:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border-color: var(--accent-color);
}

.parfum-item .product-info {
    color: var(--text-primary);
}

.parfum-item .product-brand {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.parfum-item .product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.parfum-item .ml-selector {
    margin-bottom: 0.75rem;
}

.parfum-item .product-rating-price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
}

.parfum-item .product-left-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.parfum-item .product-rating {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 0.85rem;
    display: flex;
    gap: 0.15rem;
    align-items: center;
    cursor: pointer;
}

.parfum-item .product-rating .rating-star {
    color: #ffc107;
    opacity: 0.3;
    transition: all 0.2s ease;
    cursor: pointer;
}

.parfum-item .product-rating .rating-star:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.parfum-item .product-rating .rating-star.active,
.parfum-item .product-rating .rating-star.filled {
    opacity: 1;
    color: #ffc107;
}

.parfum-item .product-rating .rating-text {
    margin-left: 0.3rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    cursor: default;
}

.parfum-item .product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.parfum-item .current-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000000;
    line-height: 1.2;
}

.parfum-item .old-price {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    line-height: 1.2;
    opacity: 0.7;
}

.parfum-item .add-to-cart {
    width: auto;
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.parfum-item .add-to-cart:hover {
    background-color: var(--hover-color);
}

.parfum-item .add-to-cart i {
    font-size: 0.85rem;
}

/* Auth Pages */
.auth-main {
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    background-color: var(--bg-primary);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: var(--accent-color);
}

.page-title-auth {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.section-title-form {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.section-title-form:first-of-type {
    margin-top: 0;
}

.auth-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.required {
    color: #ff0000;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.password-match-message {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.password-match-message.match-success {
    color: #28a745;
}

.password-match-message.match-error {
    color: #dc3545;
}

.password-strength-container {
    margin-top: 0.5rem;
}

.password-strength-bar {
    width: 100%;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.password-strength-fill.weak {
    background-color: #dc3545;
}

.password-strength-fill.fair {
    background-color: #ffc107;
}

.password-strength-fill.good {
    background-color: #17a2b8;
}

.password-strength-fill.strong {
    background-color: #28a745;
}

.password-strength-text {
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
}

.password-strength-text.weak {
    color: #dc3545;
}

.password-strength-text.fair {
    color: #ffc107;
}

.password-strength-text.good {
    color: #17a2b8;
}

.password-strength-text.strong {
    color: #28a745;
}

.auth-form .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.auth-form .form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

.delivery-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--bg-primary);
    padding: 0.5rem 0.6rem;
}

.phone-flag {
    width: 28px;
    height: 21px;
    object-fit: contain;
}

.phone-code {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    user-select: none;
}

.phone-input-wrapper input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.phone-input-wrapper input:focus {
    outline: none;
    border: none;
}

.phone-format-message {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 1.2rem;
    display: block;
    color: var(--text-secondary);
}

.phone-format-message.format-error {
    color: #dc3545;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.forgot-password {
    color: #ff0000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #cc0000;
}

.auth-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.auth-btn:hover {
    background-color: #333333;
}

.auth-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.error-message {
    background-color: #fee;
    color: #c00;
    border: 1px solid #fcc;
}

.success-message {
    background-color: #efe;
    color: #060;
    border: 1px solid #cfc;
}

.auth-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 1rem;
}

.auth-switch span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-link-btn {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.auth-link-btn:hover {
    background-color: var(--hover-color);
}

/* Newsletter/Subscription Section */
.newsletter-section {
    background-color: var(--bg-primary);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-content {
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.newsletter-discount {
    color: var(--text-primary);
}

.newsletter-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem;
    background-color: var(--bg-primary);
    transition: border-color 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: #000000;
}

[data-theme="dark"] .newsletter-input-wrapper:focus-within {
    border-color: var(--accent-color);
}

.newsletter-phone-prefix {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    background-color: transparent;
}

.newsletter-phone-prefix .phone-flag {
    width: 28px;
    height: 21px;
    object-fit: contain;
}

.newsletter-phone-prefix .phone-code {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    user-select: none;
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.newsletter-submit-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.newsletter-submit-btn:hover {
    background-color: #333333;
    transform: scale(1.05);
}

[data-theme="dark"] .newsletter-submit-btn {
    background-color: var(--accent-color);
    color: var(--bg-primary);
}

[data-theme="dark"] .newsletter-submit-btn:hover {
    background-color: var(--hover-color);
}

.newsletter-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.5rem;
    text-align: center;
}

.newsletter-message.success {
    color: #28a745;
}

.newsletter-message.error {
    color: #dc3545;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 1.5rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-description {
        font-size: 0.9rem;
    }

    .newsletter-input-wrapper {
        flex-wrap: wrap;
        border-radius: 25px;
    }

    .newsletter-phone-prefix {
        width: 100%;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .newsletter-input {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .newsletter-submit-btn {
        width: 100%;
        border-radius: 25px;
        margin-top: 0.5rem;
    }
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    margin-top: 4rem;
    padding: 0;
}

.footer-main {
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-company {
    max-width: 400px;
}

.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.footer-heading {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-links .social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
}

.footer-social-links .social-link-footer:hover {
    background-color: #ffffff;
    transform: scale(1.1);
}

.footer-social-links .social-link-footer img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.footer-social-links .social-link-footer img.default-img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.footer-social-links .social-link-footer img.hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: brightness(0);
}

.footer-social-links .social-link-footer:hover img.default-img {
    opacity: 0;
}

.footer-social-links .social-link-footer:hover img.hover-img {
    opacity: 1;
}

.footer-bottom {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Page Content Styles */
.page-content {
    min-height: 60vh;
    padding: 4rem 2rem;
    background-color: var(--bg-primary);
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.page-text {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1rem;
}

.page-text p {
    margin-bottom: 1.5rem;
}

.page-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-text ul li {
    margin-bottom: 0.5rem;
}

.page-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-text a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .page-content {
        padding: 2rem 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-company {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-company {
        grid-column: 1;
    }

    .footer-bottom {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-products {
        max-width: 100%;
    }

    .product-card {
        margin: 0 auto;
    }

    .slider-nav {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .header-top-container {
        padding: 0 1rem;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .header-divider-vertical {
        display: none;
    }

    .header-nav {
        justify-content: center;
        width: 100%;
    }

    .header-nav .nav-link {
        font-size: 0.85rem;
    }

    .header-hours {
        font-size: 0.8rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-play {
        width: 100%;
        justify-content: center;
    }

    .products-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filters-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        order: 2;
    }

    .products-content {
        order: 1;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .parfum-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .parfum-item {
        max-width: 100%;
    }

    .parfum-item .product-image img {
        height: 140px;
    }

    .parfum-item .product-rating-price-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .parfum-item .add-to-cart {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-main {
        padding: 0 1rem;
    }

    .slider-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-image img {
        height: 200px;
    }

    .auth-main {
        padding: 2rem 1rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-btn {
        width: 100%;
        justify-content: center;
    }

    .auth-switch {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-link-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Admin Form Styles */
.admin-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

@media (min-width: 1400px) {
    .admin-container {
        max-width: 1800px;
    }
}

.admin-form {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.admin-form .form-group {
    margin-bottom: 1.5rem;
}

.admin-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="url"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.admin-form input[type="text"]:focus,
.admin-form input[type="number"]:focus,
.admin-form input[type="url"]:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(159, 214, 174, 0.1);
    transform: translateY(-1px);
}

.admin-form input[type="text"]:hover,
.admin-form input[type="number"]:hover,
.admin-form input[type="url"]:hover,
.admin-form select:hover,
.admin-form textarea:hover {
    border-color: var(--accent-color);
}

.hecm-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hecm-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

.hecm-checkbox-label:hover {
    background-color: var(--bg-secondary);
}

.hecm-checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.hecm-checkbox-label input[type="checkbox"]:checked+span {
    font-weight: 600;
    color: var(--accent-color);
}

.hecm-checkbox-label:has(input:checked) {
    border-color: var(--accent-color);
    background-color: var(--bg-secondary);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: var(--bg-primary);
    font-weight: 600;
    color: var(--text-primary);
}

.admin-table td {
    color: var(--text-secondary);
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    font-weight: 500;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
    font-weight: 600;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Product Modal */
.product-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 2rem;
}

.product-modal-overlay.active {
    display: flex;
}

.product-modal {
    background-color: var(--bg-primary);
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
    border: 2px solid var(--border-color);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background-color: var(--bg-secondary);
    transform: rotate(90deg);
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.product-modal-left {
    position: relative;
}

.product-modal-image-container {
    position: relative;
    text-align: center;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 2rem;
}

.product-modal-image-container img {
    max-width: 100%;
    height: 400px;
    object-fit: contain;
}

.modal-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-image-nav.prev {
    left: 1rem;
}

.modal-image-nav.next {
    right: 1rem;
}

.modal-image-nav:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border-color: var(--accent-color);
}

.product-modal-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-modal-brand {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-modal-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-modal-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.modal-rating-star {
    color: #ffc107;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-rating-star.active,
.modal-rating-star.filled {
    opacity: 1;
    color: #ffc107;
}

.modal-rating-text {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.product-modal-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-modal-price-container {
    margin-top: 0.5rem;
}

.product-modal-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-primary);
}

.modal-price-per-ml {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
    font-weight: normal;
}

.modal-old-price {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.modal-quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.modal-qty-btn {
    width: 40px;
    height: 40px;
    background-color: var(--bg-primary);
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-qty-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
}

#modal-quantity {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.modal-add-to-cart {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-add-to-cart:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .product-modal-content {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .product-modal-image-container img {
        height: 250px;
    }

    .product-modal-name {
        font-size: 1.4rem;
    }

    .modal-current-price {
        font-size: 1.5rem;
    }

    .product-modal-actions {
        flex-direction: column;
    }

    .modal-add-to-cart {
        width: 100%;
    }
}

/* Products Slider Section */
.products-slider-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.product-category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center;
}

.category-title:hover {
    color: var(--text-secondary);
}

.product-slider-container {
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.product-slider-container::-webkit-scrollbar {
    display: none;
}

.product-slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-slider {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
    padding-bottom: 0.5rem;
}

.parfum-item-slide {
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}

.parfum-item-slide:hover {
    transform: translateY(-5px);
    border-color: #000000;
}

[data-theme="dark"] .parfum-item-slide:hover {
    border-color: var(--accent-color);
}

/* Rating - İsmin hemen üstünde */
.parfum-item-slide .product-rating-slide {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
}

.parfum-item-slide .product-rating-slide .rating-star {
    font-size: 0.75rem;
    color: #ffc107;
}

.parfum-item-slide .product-rating-slide .rating-star.filled {
    color: #ffc107;
}

/* Discount Badge */
.parfum-item-slide .discount-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: #000000;
    color: #ffffff;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 6;
}

/* Price Badge - Sağ Üstte (Küçük) */
.parfum-item-slide .product-price-badge-slide {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 5;
    background-color: #000000;
    color: #ffffff;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .parfum-item-slide .product-price-badge-slide {
    background-color: var(--accent-color);
    color: var(--bg-primary);
}

.parfum-item-slide .product-price-badge-slide .current-price {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.75rem;
}

[data-theme="dark"] .parfum-item-slide .product-price-badge-slide .current-price {
    color: var(--bg-primary) !important;
}

.parfum-item-slide .product-price-badge-slide .old-price {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.3rem;
}

[data-theme="dark"] .parfum-item-slide .product-price-badge-slide .old-price {
    color: rgba(0, 0, 0, 0.7);
}

/* Product Image - Büyük */
.parfum-item-slide .product-image-slide {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.parfum-item-slide .product-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.parfum-item-slide .product-image-slide:hover img {
    transform: scale(1.05);
}

/* Product Info - Fotoğrafın altında (Aynı arka plan) */
.parfum-item-slide .product-info-slide {
    padding: 1rem;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.parfum-item-slide .product-brand-name-slide {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.parfum-item-slide .product-brand-slide {
    font-weight: 600;
    color: var(--text-primary);
}

.parfum-item-slide .product-separator {
    color: var(--text-secondary);
    opacity: 0.8;
}

.parfum-item-slide .product-name-slide {
    color: var(--text-secondary);
    font-weight: 400;
}


/* Why Us Section */
.why-us-section {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem 0;
}

.why-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .products-slider-section {
        padding: 0 1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .parfum-item-slide {
        min-width: 240px;
        max-width: 240px;
        height: 360px;
    }

    .why-us-title {
        font-size: 2rem;
    }
}

/* Subscription Toggle Loading State */
#subscription-toggle:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#subscription-toggle:disabled+.tgl-btn {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Settings Modal */
.settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.settings-modal.active {
    opacity: 1;
    visibility: visible;
}

.settings-modal-content {
    background-color: var(--bg-primary);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.settings-modal.active .settings-modal-content {
    transform: scale(1);
}

.settings-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.settings-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.settings-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.settings-modal-close:hover {
    color: var(--text-primary);
}

.settings-modal-body {
    padding: 1.5rem;
}

.settings-section {
    margin-bottom: 2rem;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-item-label {
    flex: 1;
}

.settings-item-label label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.settings-item-description {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(159, 214, 174, 0.1);
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.form-actions .btn-primary {
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions .btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-actions .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .settings-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .settings-modal-header {
        padding: 1rem;
    }

    .settings-modal-header h2 {
        font-size: 1.25rem;
    }

    .settings-modal-body {
        padding: 1rem;
    }

    .settings-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-actions {
        justify-content: stretch;
    }

    .form-actions .btn-primary {
        width: 100%;
    }
}