@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #e91e63; /* Vibrant Pink */
    --primary-gradient: linear-gradient(135deg, #e91e63 0%, #ff4081 50%, #c2185b 100%);
    --primary-dark: #c2185b;
    --bg-dark: #FFFFFF; /* Dark floral background */
    --bg-card: #F9F9F9;
    --text-light: #333333;
    --text-muted: #777777;
    --accent: #A3D9A5; /* Leaf Green */
    --glass: rgba(0, 0, 0, 0.03);
    --border-glass: rgba(0, 0, 0, 0.08);
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a i {
    margin-right: 5px;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.5)), url('https://images.unsplash.com/photo-1563241598-a28a3857e4e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle 600px at var(--x, 50%) var(--y, 50%), rgba(232, 162, 178, 0.35), transparent 80%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.1s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Custom Cursor (Desktop Only) */
@media (min-width: 769px) {
    body, a, button, .btn, .cart-btn, .close-cart, .faq-question, .cart-notification, .cart-notif-card, .cart-notif-card * {
        /* cursor: none !important; */
    }

    .custom-cursor { display: none !important;
        position: fixed;
        top: 0; left: 0;
        width: 24px; height: 24px;
        border: 2px solid var(--primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 999999;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 15px rgba(232, 162, 178, 0.5);
        transition: width 0.1s, height 0.1s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-cursor::after {
        content: '';
        width: 6px; height: 6px;
        background: var(--primary);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--primary);
    }
}

    /* Removed cursor inner dot */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.7s;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
}

.btn:hover {
    background: transparent;
    color: var(--primary);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
    margin-left: 15px;
}

.btn-outline:hover {
    border-color: var(--text-light);
    background: var(--text-light);
    color: var(--bg-dark);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #FFFFFF;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(232, 162, 178, 0.3);
    box-shadow: 0 30px 60px rgba(232, 162, 178, 0.15), 0 0 40px rgba(232, 162, 178, 0.05) inset;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.product-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.7s ease;
}

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

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(20, 22, 25, 1) 0%, rgba(20, 22, 25, 0.8) 40%, transparent 100%);
}

.product-info {
    padding: 0 30px 30px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -80px; /* Pulls text over the faded image */
}

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

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.whatsapp-btn {
    width: 100%;
    background: #25D366;
    color: #333;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: -20px;
}

.step-card h3 {
    margin-bottom: 15px;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

/* Product Detail Page */
.product-detail {
    padding-top: 150px;
    padding-bottom: 100px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.detail-image img {
    width: 100%;
    display: block;
}

.badge-detail {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-gradient);
    color: var(--bg-dark);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.detail-info h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.divider-small {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 30px;
}

.full-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Order Form */
.order-form-container {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.order-form-container h3 {
    margin-bottom: 10px;
}

.order-form-container p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 15px;
    border-radius: 10px;
    color: #333;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.06);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.whatsapp-btn-large {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.whatsapp-btn-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Special Section: 3D Printing */
.bespoke-section {
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1526047932273-341f2a7631f9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    padding: 150px 0;
    text-align: center;
}

.bespoke-content {
    max-width: 800px;
    margin: 0 auto;
}

.bespoke-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bespoke-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: blur(20px);
    }
    nav.mobile-open {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 40px;
    }
    nav ul li a {
        font-size: 1.5rem;
    }
    .mobile-menu-btn {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        z-index: 1001;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}

.mobile-menu-btn {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dolap Styles */
.dolap-badge-link {
    transition: var(--transition);
}
.dolap-badge-link:hover {
    transform: scale(1.05);
}
.dolap-badge-link .trust-badge-item {
    background: rgba(20, 177, 92, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(20, 177, 92, 0.3);
}

.btn-dolap {
    background: #14B15C !important;
    border-color: #14B15C !important;
    color: white !important;
    margin-top: 10px;
}
.btn-dolap:hover {
    background: #0e8a47 !important;
    border-color: #0e8a47 !important;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

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

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 162, 178, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(232, 162, 178, 0.4);
}

.testimonial-card .stars {
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(232, 162, 178, 0.2);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.cart-overlay.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--primary);
    margin: 0;
}

.close-cart {
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cart-item-info h4 { margin-bottom: 5px; font-size: 1rem; color: #333; }
.cart-item-info p { color: var(--primary); font-size: 0.9rem; margin: 0; }
.remove-item { color: #ff6b6b; cursor: pointer; transition: 0.3s; }
.remove-item:hover { color: red; transform: scale(1.1); }

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cart-btn {
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 10px;
}

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

/* Floating WhatsApp Pulsing Effect */
.floating-whatsapp {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .cart-overlay { width: 100%; right: -100%; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .contact-section { padding: 100px 0 40px 0 !important; }
}

/* Product Gallery Styles */
.gallery-thumb.active {
    border-color: var(--primary) !important;
    background: rgba(232, 162, 178, 0.1) !important;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
}

.product-gallery::-webkit-scrollbar {
    height: 5px;
}

.product-gallery::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.product-gallery::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Global Favorites Button Styles */
.fav-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 20;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.fav-btn i {
    color: #ccc;
    font-size: 0.95rem;
    transition: 0.3s;
}
.fav-btn.active i {
    color: #e74c3c !important;
}
.fav-btn:hover {
    transform: scale(1.1);
    background: rgba(0,0,0,0.8) !important;
}


/* --- EXTRACTED FROM INLINE STYLES --- */
/* From checkout.php */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: flex-start; }
.form-row-flex { display: flex; gap: 20px; }
.form-row-flex .form-group { flex: 1; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-group label { font-size: 0.85rem; color: #8a8a8a; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; color: #333; font-size: 0.95rem; box-sizing: border-box; }
.form-group input:focus, .form-group textarea:focus { border-color: #e8a2b2; outline: none; }

.payment-method-option { display: flex; align-items: center; gap: 15px; padding: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; cursor: pointer; }
.payment-method-option input[type="radio"] { accent-color: #e8a2b2; width: 20px; height: 20px; margin: 0; cursor: pointer; }
.option-content { flex: 1; }
.option-title { display: block; font-weight: 600; color: #333; font-size: 0.95rem; }
.option-desc { display: block; font-size: 0.82rem; color: #8a8a8a; }
.option-icon { font-size: 1.4rem; color: rgba(255,255,255,0.25); }
.payment-method-option:has(input[type="radio"]:checked) { border-color: #e8a2b2 !important; background: rgba(232, 162, 178, 0.06) !important; }
.payment-method-option:has(input[type="radio"]:checked) .option-icon { color: #e8a2b2; }

@media (max-width: 991px) { .checkout-grid { grid-template-columns: 1fr; gap: 30px; } }
@media (max-width: 768px) { 
    .form-row-flex { flex-direction: column; gap: 0; } 
    .checkout-card { padding: 15px !important; }
    .payment-method-option { padding: 12px !important; gap: 10px !important; }
}

/* From sepet.php */
@media (max-width: 992px) {
        .cart-grid { grid-template-columns: 1fr !important; }
        .cart-summary { margin-top: 30px; }
    }
    @media (max-width: 768px) {
        .cart-page-item {
            flex-direction: column !important;
            align-items: center !important;
            text-align: center;
            gap: 15px;
            padding: 15px !important;
        }
        .cart-page-item > img, .cart-page-item > div:first-child {
            margin: 0 auto 10px auto !important;
        }
        .cart-page-item > div {
            margin-right: 0 !important;
            width: 100%;
            justify-content: center;
        }
        .cart-page-item > div:nth-child(4) {
            justify-content: space-between !important;
        }
    }
    .cart-page-item:hover {
        background: rgba(255,255,255,0.05) !important;
        transform: translateX(10px);
    }

/* From product.php */
.reviews-container-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    margin-bottom: 50px;
}
.star-rating-selector input:checked ~ label,
.star-rating-selector label:hover,
.star-rating-selector label:hover ~ label {
    color: #e8a2b2 !important;
}
#reviewsScrollContainer::-webkit-scrollbar {
    width: 6px;
}
#reviewsScrollContainer::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}
#reviewsScrollContainer::-webkit-scrollbar-thumb {
    background: rgba(212,175,55,0.2);
    border-radius: 10px;
}
#reviewsScrollContainer::-webkit-scrollbar-thumb:hover {
    background: rgba(212,175,55,0.4);
}
@media (max-width: 991px) {
    .reviews-container-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}
@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    70% { transform: scale(0.9); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

/* From urunler.php */
.filter-btn {
    padding: 8px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
    letter-spacing: 0.5px;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}
.fav-btn.active i { color: #e74c3c !important; }
.fav-btn:hover { transform: scale(1.1); background: rgba(0,0,0,0.7) !important; }
.product-card { position: relative; }

@media (max-width: 768px) {
    .products-hero h1 { font-size: 2rem !important; }
}

/* From favoriler.php */
/* CSS for product cards specifically in wishlist */
.product-card {
    background: #FFFFFF;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    max-width: 380px;
    width: 100%;
}
.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(232, 162, 178, 0.3);
    box-shadow: 0 30px 60px rgba(232, 162, 178, 0.15);
}
.product-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.product-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(20, 22, 25, 1) 0%, rgba(20, 22, 25, 0.8) 40%, transparent 100%);
}
.product-info {
    padding: 0 25px 25px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

/* From footer.php */
.notification-container {
            position: fixed;
            z-index: 10001;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
            width: 280px;
        }
        .cart-notification {
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: auto;
        }
        .cart-notification.show {
            transform: translateY(0);
            opacity: 1;
        }
        .cart-notif-card {
            background: #1a1c1e;
            border: 1px solid var(--primary);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            gap: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.1);
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .cart-notif-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 100%;
            transform-origin: left;
        }
        .cart-notification.show .cart-notif-progress {
            animation: notifProgress 3.5s linear forwards;
        }
        .cart-notif-card:hover .cart-notif-progress {
            animation-play-state: paused !important;
        }
        @keyframes notifProgress {
            from { transform: scaleX(1); }
            to { transform: scaleX(0); }
        }
        .cart-notif-card img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .cart-notif-content {
            flex: 1;
        }
        .cart-notif-title {
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 3px;
        }
        .cart-notif-name {
            font-size: 0.9rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 2px;
            line-height: 1.4;
        }
        .cart-notif-price {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

/* From header.php */
/* Nav — masaüstünde flex, mobilde slide-in panel */
        #main-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-close-btn {
            display: none;
        }

        @media (max-width: 768px) {
            #main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 40px;
                z-index: 1500;
                transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                backdrop-filter: blur(20px);
            }

            #main-nav.mobile-open {
                right: 0;
            }

            #main-nav a {
                font-size: 1.4rem !important;
                letter-spacing: 2px !important;
                opacity: 1 !important;
            }

            .nav-close-btn {
                display: flex;
                position: absolute;
                top: 25px;
                right: 25px;
                background: transparent;
                border: 2px solid rgba(255,255,255,0.15);
                border-radius: 50%;
                width: 44px;
                height: 44px;
                align-items: center;
                justify-content: center;
                color: #333;
                font-size: 1.2rem;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .nav-close-btn:hover {
                border-color: var(--primary);
                color: var(--primary);
                transform: rotate(90deg);
            }

            .header-right {
                gap: 15px !important;
            }

            .header-actions {
                gap: 15px !important;
                padding-left: 10px !important;
                border-left: none !important;
            }

            .mobile-menu-btn {
                margin-left: 5px;
                margin-right: 5px;
                display: block !important;
            }
        }


/* --- EXTRACTED FROM INLINE STYLES --- */

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #333;
}
.form-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}




