/* ===== CSS Variables ===== */
:root {
    --primary-color: #c9a86c;
    --primary-hover: #d4b87d;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #2a2a2a;
    --gradient-gold: linear-gradient(135deg, #c9a86c 0%, #f0d9a0 50%, #c9a86c 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(201, 168, 108, 0.2);
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Navbar ===== */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(5, 5, 5, 0.98);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--text-secondary);
    font-weight: 300;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.cart-btn {
    position: relative;
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
}

.cart-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Hero Section ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 108, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 108, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23c9a86c" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-btn {
    background: var(--gradient-gold);
    border: none;
    color: var(--bg-dark);
    font-weight: 500;
    padding: 1rem 2.5rem;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.4s both;
    transition: var(--transition);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--bg-dark);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Section Styles ===== */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== Products Section ===== */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.filter-buttons {
    margin-bottom: 3rem;
}

.btn-filter {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    margin: 0 0.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.product-image {
    position: relative;
    height: 280px;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
}

.product-image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: var(--transition);
}

.product-overlay .btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    height: 500px;
    background: var(--bg-card);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.about-image-placeholder i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.about-content {
    padding-left: 3rem;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.contact-cards {
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h5 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-card:hover span {
    color: var(--primary-color);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

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

.footer h5 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

.footer hr {
    border-color: var(--border-color);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.developer-credit {
    margin-top: 0.75rem !important;
    font-size: 0.8rem !important;
    opacity: 0.7;
}

.developer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.developer-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===== Cart Offcanvas ===== */
.offcanvas {
    background-color: var(--bg-darker);
    border-left: 1px solid var(--border-color);
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.offcanvas-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.offcanvas-body {
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 0;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cart-empty p {
    color: var(--text-secondary);
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image i {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

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

.cart-item-quantity button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: #ff4444;
}

.offcanvas-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-darker);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cart-total span:last-child {
    color: var(--primary-color);
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: white;
    font-weight: 500;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* ===== Product Modal ===== */
.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
}

.modal-body {
    padding: 2rem;
}

.product-modal-image {
    height: 350px;
    background: var(--bg-darker);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-modal-image i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.product-modal-info {
    padding-left: 1rem;
}

.product-modal-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-modal-details {
    margin-bottom: 1.5rem;
}

.product-modal-details p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.product-modal-details strong {
    color: var(--text-primary);
}

.product-modal-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.add-to-cart-modal {
    background: var(--gradient-gold);
    border: none;
    color: var(--bg-dark);
    font-weight: 500;
    padding: 1rem;
    border-radius: 10px;
}

.add-to-cart-modal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--bg-dark);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .about-image-placeholder {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .about-features {
        justify-content: center;
    }

    .product-image {
        height: 220px;
    }

    .btn-filter {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    /* Mobilde navbar içindeki sepet butonunu gizle */
    .navbar .cart-btn {
        display: none !important;
    }

    /* Mobilde nav-link altındaki sarı çizgiyi kaldır */
    .nav-link::after {
        display: none;
    }
}

/* Mobil Floating Sepet Butonu */
.mobile-cart-btn {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: var(--bg-dark);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4);
    transition: var(--transition);
}

.mobile-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 168, 108, 0.6);
}

.mobile-cart-btn .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .mobile-cart-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===== Clear Cart Button ===== */
.btn-clear-cart {
    background: transparent;
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff6b6b;
    border-radius: 8px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 0.35rem;
    margin-right: auto;
    margin-left: 0.75rem;
    transition: var(--transition);
}

.btn-clear-cart:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

/* ===== KVKK/Cookie Banner ===== */
.kvkk-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 9990;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.kvkk-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.kvkk-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.kvkk-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

.kvkk-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.kvkk-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.kvkk-reject {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.kvkk-reject:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.kvkk-accept {
    background: var(--gradient-gold);
    border: none;
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.kvkk-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--bg-dark);
}

@media (max-width: 767px) {
    .kvkk-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
        /* Mobilde floating cart butonunun üstüne çakışmasın */
        bottom: 90px;
    }

    .kvkk-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ===== Product Badges ===== */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-yeni {
    background: var(--gradient-gold);
    color: var(--bg-dark);
}

.badge-cok-satan {
    background: linear-gradient(135deg, #c9a86c, #e8c97a);
    color: var(--bg-dark);
    border: 1px solid rgba(201, 168, 108, 0.5);
}

.badge-tukeniyor {
    background: rgba(255, 68, 68, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 68, 68, 0.4);
}

/* ===== Product Search ===== */
.search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto 2.5rem;
}

.search-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

#productSearch {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.7rem 1.25rem 0.7rem 2.75rem;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

#productSearch::placeholder {
    color: var(--text-muted);
}

#productSearch:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

#productSearch:focus + i,
.search-wrapper:focus-within i {
    color: var(--primary-color);
}

.no-results {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    margin-bottom: -0.5rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-card-hover));
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Bulk Discount (Cart) ===== */
.cart-discount-info {
    background: rgba(201, 168, 108, 0.08);
    border: 1px solid rgba(201, 168, 108, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.cart-discount-promo {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-discount-promo i {
    font-size: 1rem;
}

.cart-subtotal-row,
.cart-discount-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

.cart-discount-row {
    color: #4caf50;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.cart-total-row span:last-child {
    color: var(--primary-color);
}
