/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b7355;
    --secondary-color: #d4b896;
    --accent-color: #2f1b14;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --background-light: #fefefe;
    --background-cream: #f9f7f4;
    --border-light: #e8e8e8;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --container-max: 1200px;
    --container-padding: 20px;
    --border-radius: 8px;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

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

/* Buttons */
button, .btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

button:hover, .btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

/* Cart Container */
.cart-container {
    position: relative;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: -20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-light);
    width: 350px;
    max-height: 500px;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: none;
}

.cart-icon {
    background: var(--background-cream);
    padding: 10px 16px;
    border-radius: 25px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.cart-icon:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cart-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.cart-count-badge {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 22px;
    height: 22px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-count-badge:empty,
.cart-count-badge[data-count="0"] {
    display: none;
}

.cart-count-badge.show {
    display: flex;
}


.cart-dropdown.show,
.cart-dropdown.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
    z-index: 99999 !important;
}

/* Force dropdown visibility when .show class is present */
#cart-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
    z-index: 99999 !important;
    position: absolute !important;
}

.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 40px;
    border: 8px solid transparent;
    border-bottom-color: white;
    z-index: 1002;
}

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

.cart-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--border-light);
    color: var(--text-dark);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.empty-cart-message {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-light);
}

.empty-cart-message p {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.empty-cart-message small {
    font-size: 0.85rem;
    color: var(--text-light);
}

.mini-cart-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.mini-cart-item:hover {
    background: var(--background-light);
}

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

.mini-item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Quantity Controls Styles */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.quantity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    line-height: 1;
}

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

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

.quantity-btn.minus {
    background: var(--text-light);
}

.quantity-btn.minus:hover {
    background: var(--text-dark);
}

.quantity-display {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.mini-item-quantity {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.mini-item-details {
    flex: 1;
    min-width: 0;
}

.mini-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-item-price {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.mini-item-quantity {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.mini-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-item-remove:hover {
    background: #ff4444;
    color: white;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    background: var(--background-light);
}

.cart-total {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
}

.cart-total strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.cart-btn {
    padding: 0.7rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.cart-btn.view-cart {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cart-btn.view-cart:hover {
    background: var(--primary-color);
    color: white;
}

.cart-btn.checkout {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.cart-btn.checkout:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Mobile-First Hero with Collections */
.hero-collections {
    background: linear-gradient(135deg, var(--background-cream) 0%, #f5f3f0 100%);
    padding-top: 80px;
    min-height: 100vh;
}

.hero-header {
    text-align: center;
    padding: 2rem 0;
    background: var(--background-light);
    border-bottom: 1px solid var(--border-light);
}

.brand-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.brand-description {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Collection Preview Cards */
.collection-preview {
    padding: 1.5rem 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.collection-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-light);
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

/* .collection-card.featured {
    grid-row: span 1;
} */

.collection-card:active {
    transform: scale(0.98);
}

.collection-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
}

.collection-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: white;
}

.collection-info p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
}

.collection-count {
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
}

/* Quick Actions */
.quick-actions {
    padding: 1.5rem 0 2rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.action-btn {
    padding: 0.8rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
}

.action-btn.secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

/* Collections Detail Section */
.collections-detail {
    padding: 3rem 0;
    background: var(--background-light);
}

.collections-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.collection-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.collection-visual {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.collection-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover .collection-visual img {
    transform: scale(1.03);
}

.collection-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collection-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.collection-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.collection-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--background-cream);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.collection-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collection-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.collection-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.product-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: var(--background-light);
    width: 100%;
    overflow-x: hidden;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Customer Photos Slider */
.customer-photos-container {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.customer-photos-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.customer-photos-slider::-webkit-scrollbar {
    display: none;
}

.photo-item {
    flex: 0 0 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    min-width: 280px;
    max-width: 280px;
    box-sizing: border-box;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.photo-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover .photo-image img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.customer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
    font-weight: 500;
}

.customer-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

.zoom-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.photo-item:hover .zoom-indicator {
    opacity: 1;
    transform: scale(1);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    max-width: calc(100% - 80px);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 3px 10px var(--shadow-light);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.prev-btn {
    margin-left: 0;
}

.next-btn {
    margin-right: 0;
}

/* Customer Photo Modal */
.customer-photo-modal {
    z-index: 9999;
}

.customer-modal-content {
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.customer-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.9);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-modal-close:hover {
    color: var(--primary-color);
    background: white;
}

.customer-modal-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
}

.customer-photo-large {
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.customer-photo-large img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.customer-modal-info {
    padding: 2rem;
    background: var(--background-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customer-modal-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.customer-modal-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.customer-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.follow-btn,
.share-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.follow-btn {
    background: linear-gradient(45deg, #f56040, #f093fb);
    color: white;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 96, 64, 0.3);
}

.share-btn {
    background: var(--primary-color);
    color: white;
}

.share-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

/* Customer Photos Responsive */
@media (max-width: 768px) {
    .photo-item {
        flex: 0 0 250px;
    }
    
    .photo-image {
        height: 250px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        margin-left: -20px;
    }
    
    .next-btn {
        margin-right: -20px;
    }
    
    .customer-modal-body {
        grid-template-columns: 1fr;
    }
    
    .customer-photo-large {
        padding: 1rem;
    }
    
    .customer-modal-info {
        padding: 1.5rem;
    }
    
    .customer-modal-actions {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .photo-item {
        flex: 0 0 200px;
    }
    
    .photo-image {
        height: 200px;
    }
    
    .customer-photos-container {
        margin: 0 -1rem 3rem -1rem;
        padding: 0 1rem;
        width: calc(100% + 2rem);
        max-width: calc(100vw);
        overflow: hidden;
    }
    
    .customer-photos-slider {
        gap: 1rem;
        padding: 0;
        margin: 0;
        width: auto;
        overflow-x: hidden;
    }
    
    .photo-item {
        flex: 0 0 calc(50vw - 2rem);
        min-width: calc(50vw - 2rem);
        max-width: calc(50vw - 2rem);
        width: calc(50vw - 2rem);
    }
    
    .slider-navigation {
        left: 25px;
        right: 25px;
        max-width: calc(100% - 50px);
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .zoom-indicator {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .customer-modal-content {
        width: 98%;
        margin: 1%;
    }
    
    .customer-photo-large {
        padding: 0.5rem;
    }
    
    .customer-modal-info {
        padding: 1rem;
    }
    
    .customer-modal-info h3 {
        font-size: 1.3rem;
    }
    
    .customer-modal-info p {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .follow-btn,
    .share-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

.social-proof-cta {
    text-align: center;
    background: var(--background-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px var(--shadow-light);
}

.social-proof-cta p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.social-cta-btn {
    background: linear-gradient(135deg, #E4405F, #F77737);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto;
}


/* About Preview Section */
.about-preview {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-btn {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    margin-top: 1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Featured Products */
.featured-products {
    background: var(--background-cream);
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.quick-view-btn {
    background: white;
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

.product-info {
    padding: 1.2rem 1rem;
    text-align: center;
}

.product-name {
    margin-bottom: 0.3rem;
    font-size: 1rem;
    line-height: 1.3;
}

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

.product-colors {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.color-option:hover {
    transform: scale(1.2);
    border-color: var(--primary-color);
}

/* Sticky Add to Cart Button */
.sticky-add-to-cart {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    z-index: 10;
}

.sticky-add-to-cart:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.sticky-add-to-cart:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(139, 115, 85, 0.2);
}

/* Sticky behavior on mobile */
@media (max-width: 768px) {
    .product-card {
        position: relative;
    }
    
    .sticky-add-to-cart {
        position: sticky;
        bottom: 10px;
        background: var(--primary-color);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 100;
        margin-top: 0.5rem;
    }
    
    .sticky-add-to-cart:hover {
        background: var(--primary-color);
        transform: none;
        box-shadow: 0 -2px 15px rgba(139, 115, 85, 0.2);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    transition: var(--transition);
}

.whatsapp-text {
    position: absolute;
    left: -100px;
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 6px solid transparent;
    border-top-color: var(--text-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp pulse animation */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-tooltip {
        bottom: 65px;
        right: -10px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Footer */
.footer {
    background: var(--accent-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

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

.social-links a:hover {
    transform: scale(1.2);
}

/* Trust Section */
.trust-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.5rem;
    opacity: 0.9;
}

.trust-item span {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.payment-methods h4 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
}

.payment-card {
    background: white;
    color: var(--text-dark);
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid #ddd;
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.payment-card.visa {
    background: #1A1F71;
    color: white;
}

.payment-card.mastercard {
    background: #EB001B;
    color: white;
}

.payment-card.troy {
    background: #00A651;
    color: white;
}

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

/* Quick View & Zoom Styles */
.quick-view-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.quick-view-image-container {
    position: relative;
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.zoom-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--background-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoomable-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    user-select: none;
}

.zoom-container.zoomed {
    cursor: move;
}

.zoom-container.zoomed .zoomable-image {
    cursor: move;
}

.zoom-hint {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.zoom-container:hover .zoom-hint {
    opacity: 1;
}

.zoom-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-toggle:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature-badge {
    background: var(--background-cream);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

.quick-view-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.add-to-cart-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.add-to-cart-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.quick-buy-btn {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.quick-buy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.quick-buy-btn:hover::before {
    width: 100%;
    height: 100%;
}

.quick-buy-btn:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Mobile adjustments for quick view */
@media (max-width: 768px) {
    .quick-view-product {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .zoom-container {
        height: 300px;
    }
    
    .zoom-hint {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .quick-view-actions {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .add-to-cart-btn,
    .quick-buy-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    color: var(--text-dark);
}

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

/* Mobile-First Responsive Design */
@media (min-width: 768px) {
    /* Tablet and larger styles */
    .brand-title {
        font-size: 2.5rem;
    }
    
    /* Reset footer section order for tablet and desktop */
    .footer-section:nth-child(1) { order: initial; }
    .footer-section:nth-child(2) { order: initial; }
    .footer-section:nth-child(3) { order: initial; }
    .footer-section:nth-child(4) { order: initial; }
    
    .brand-subtitle {
        font-size: 1.3rem;
    }
    
    .brand-description {
        font-size: 1rem;
        max-width: 400px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    /* .collection-card.featured {
        grid-row: span 2;
    } */
    
    .collection-image {
        height: 300px;
    }
    
    .collection-item {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .collection-item.reverse {
        direction: rtl;
    }
    
    .collection-item.reverse > * {
        direction: ltr;
    }
    
    .collection-visual img {
        height: 350px;
    }
    
    .action-buttons {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    /* Desktop styles */
    .hero-header {
        padding: 3rem 0;
    }
    
    .brand-title {
        font-size: 3rem;
    }
    
    .brand-subtitle {
        font-size: 1.5rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .collection-image {
        height: 400px;
    }
    
    .collection-visual img {
        height: 400px;
    }
    
    .collection-details h3 {
        font-size: 2rem;
    }
    
    .collections-showcase {
        gap: 4rem;
    }
}

/* Base mobile navigation */
@media (max-width: 768px) {
    :root {
        --container-padding: 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px var(--shadow-light);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    /* Mobile navigation layout - Menu left, Logo center, Cart right */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 0 var(--container-padding);
    }
    
    .nav-toggle {
        order: 1;
        z-index: 1001;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        order: 2;
    }
    
    .nav-right {
        order: 3;
        margin-left: auto;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* Cart dropdown tablet adjustments */
    .cart-dropdown {
        width: 320px;
        right: -15px;
    }

    .cart-dropdown::before {
        right: 35px;
    }

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

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

    section {
        padding: 60px 0;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .social-proof {
        padding: 40px 0;
    }

    .customer-photos {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .photo-image {
        height: 250px;
    }

    .social-proof-cta {
        padding: 1.5rem;
    }

    .social-proof-cta p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    /* Footer sections order for mobile */
    .footer-section:nth-child(1) { order: 3; } /* Gülsüm - alt sol */
    .footer-section:nth-child(2) { order: 1; } /* Hızlı Erişim - üst sol */
    .footer-section:nth-child(3) { order: 2; } /* Müşteri Hizmetleri - üst sağ */
    .footer-section:nth-child(4) { order: 4; } /* İletişim - alt sağ */

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 12px;
    }
    
    .hero-collections {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 0px;
    }
    
    .hero-header {
        padding: 1.5rem 0;
    }
    
    .brand-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .brand-subtitle {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .brand-description {
        font-size: 0.85rem;
        max-width: 280px;
    }
    
    .collection-preview {
        padding: 1rem 0;
    }
    
    .collection-image {
        height: 160px;
    }
    
    .collection-info h3 {
       
        font-size: 1.5rem;
        font-weight: 600;
        font-family: 'Inter';
    }
    
    .collection-info p {
        font-size: 0.90rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }
    
    .collection-count {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .action-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .collections-detail {
        padding: 2rem 0;
    }
    
    .collections-showcase {
        gap: 2rem;
    }
    
    .collection-visual img {
        height: 200px;
    }
    
    .collection-details h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .collection-details p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .collection-features {
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .feature {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .collection-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .collection-btn {
        text-align: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .customer-photos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .photo-image {
        height: 200px;
    }

    .social-proof-cta {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .social-proof-cta p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .social-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-card {
        margin: 0 0.5rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem 0.8rem;
    }
    
    .stock-badge {
        top: 0.4rem;
        right: 0.4rem;
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .about-preview {
        padding: 20px 0;
        padding-bottom:30px;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .featured-products {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
    }
    
    /* Global mobile typography */
    h1 { font-size: 1.6rem; line-height: 1.2; }
    h2 { font-size: 1.4rem; line-height: 1.3; }
    h3 { font-size: 1.2rem; line-height: 1.3; }
    h4 { font-size: 1.1rem; line-height: 1.3; }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Mobile-specific touch targets */
    button, .btn, a.btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.8rem 1rem;
    }
    
    /* Mobile spacing adjustments */
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    /* Mobile navigation improvements */
    .nav-container {
        padding: 0 12px;
        height: 70px;
    }

    /* Cart dropdown mobile */
    .cart-dropdown {
        width: 280px;
        right: -5px;
        max-height: 400px;
    }

    .cart-dropdown::before {
        right: 25px;
    }

    /* Navigation right section mobile */
    .nav-right {
        gap: 0.5rem;
    }

    /* Cart icon mobile adjustments */
    .cart-icon {
        padding: 8px 12px;
        gap: 0.6rem;
        font-size: 0.9rem;
    }

    .cart-text {
        font-size: 0.85rem;
    }

    .cart-count-badge {
        min-width: 20px;
        height: 20px;
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .nav-logo h1 {
        font-size: 1.4rem;
    }
    
    .navbar {
        backdrop-filter: blur(8px);
    }
    
    /* Footer mobile optimization */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    /* Maintain footer sections order for small mobile */
    .footer-section:nth-child(1) { order: 3; }
    .footer-section:nth-child(2) { order: 1; }
    .footer-section:nth-child(3) { order: 2; }
    .footer-section:nth-child(4) { order: 4; }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Trust section mobile */
    .trust-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .trust-icon {
        font-size: 1.2rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
    
    .payment-methods h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .payment-card {
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Quick Buy Modal Styles */
.quick-buy-modal .modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.quick-buy-container {
    padding: 2rem;
}

.quick-buy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.quick-buy-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.quick-buy-header p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.product-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.product-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.product-details h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-details .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-features .feature {
    font-size: 0.8rem;
    background: #27ae60;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

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

.form-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.quick-buy-form input,
.quick-buy-form textarea {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.quick-buy-form input:focus,
.quick-buy-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.payment-options {
    display: grid;
    gap: 0.8rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
}

.payment-option input[type="radio"]:checked + .payment-icon + span {
    font-weight: 600;
}

.payment-option:has(input:checked) {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.payment-icon {
    font-size: 1.5rem;
}

.instant-badge, .discount-badge, .safe-badge {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 500;
}

.instant-badge {
    background: #27ae60;
    color: white;
}

.discount-badge {
    background: #f39c12;
    color: white;
}

.safe-badge {
    background: #3498db;
    color: white;
}

.quick-buy-summary {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    border: 1px solid #e9ecef;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    border-top: 2px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.summary-row .free {
    color: #27ae60;
    font-weight: 500;
}

.summary-row .discount {
    color: #e74c3c;
    font-weight: 500;
}

.discount-row {
    background: rgba(231, 76, 60, 0.1);
    margin: 0 -1rem;
    padding: 0.5rem 1rem !important;
}

.complete-order-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.complete-order-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.complete-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-time {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.security-note {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Order Success Modal */
.order-success-modal .modal-content {
    max-width: 500px;
    width: 90%;
    padding: 0;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.success-container {
    background: white;
    margin: 0.5rem;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.success-animation {
    margin-bottom: 1.5rem;
}

.checkmark {
    font-size: 4rem;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-container h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.order-id {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.order-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.order-summary h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
    border-bottom: none;
}

.next-steps {
    text-align: left;
    margin-bottom: 1.5rem;
}

.next-steps h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: #5d6d7e;
}

.step-icon {
    font-size: 1.2rem;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.continue-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.success-actions .whatsapp-btn {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.success-actions .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quick-buy-modal .modal-content {
        margin: 1rem;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .quick-buy-container {
        padding: 1.5rem;
    }
    
    .quick-buy-header h2 {
        font-size: 1.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .payment-option {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .product-summary {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .product-thumb {
        width: 60px;
        height: 60px;
    }
    
    .quick-features {
        justify-content: center;
    }
    
    .complete-order-btn {
        padding: 1rem 0.8rem;
        font-size: 1rem;
    }
    
    .order-success-modal .modal-content {
        margin: 1rem;
        border-radius: 16px;
    }
    
    .success-container {
        padding: 1.5rem;
        margin: 0.3rem;
    }
    
    .checkmark {
        font-size: 3rem;
    }
    
    .success-actions {
        gap: 0.8rem;
    }
    
    .continue-btn,
    .success-actions .whatsapp-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Shipping Information Styles */
.featured-products .shipping-info {
    display: none;
}

.shipping-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.shipping-badge.free {
    color: #27ae60;
}

.shipping-badge.express {
    color: #f39c12;
}

.delivery-time {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.65rem;
    color: #7f8c8d;
}

.shipping-icon, .time-icon {
    font-size: 1rem;
}

/* Shipping Information Section */
.shipping-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.shipping-header {
    margin-bottom: 3rem;
}

.shipping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.shipping-option {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shipping-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.shipping-option.premium {
    border-color: #f39c12;
    background: linear-gradient(135deg, #fff 0%, #fef9e7 100%);
}

.shipping-option.premium::before {
    content: "En Popüler";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.shipping-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.shipping-option h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.shipping-desc {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.shipping-details {
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #5d6d7e;
    font-size: 0.9rem;
}

.detail-icon {
    font-size: 1.1rem;
}

.express-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.shipping-calculator {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 500px;
    margin: 0 auto;
}

.shipping-calculator h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.calculator-form .form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.calculator-result {
    background: rgba(39, 174, 96, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(39, 174, 96, 0.2);
    margin-top: 1rem;
}

.result-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #27ae60;
    font-weight: 500;
}

.result-icon {
    font-size: 1.2rem;
}

/* Mobile Responsive for Shipping */
@media (max-width: 768px) {
    .shipping-info-section {
        padding: 2.5rem 0;
    }
    
    .shipping-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shipping-option {
        padding: 1.5rem;
    }
    
    .shipping-icon-large {
        font-size: 2.5rem;
    }
    
    .shipping-calculator {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .shipping-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.6rem;
    }
    
    .shipping-badge {
        justify-content: center;
    }
    
    .delivery-time {
        justify-content: center;
    }
}

/* Stock Status Styles */
.stock-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    z-index: 5;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: auto;
    max-width: fit-content;
    white-space: nowrap;
}

.stock-badge.in-stock {
    background: rgba(39, 174, 96, 0.9);
    color: white;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.stock-badge.low-stock {
    background: rgba(243, 156, 18, 0.9);
    color: white;
    border: 1px solid rgba(243, 156, 18, 0.3);
    animation: stockPulse 2s infinite;
}

.stock-badge.out-of-stock {
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.stock-badge.pre-order {
    background: rgba(155, 89, 182, 0.9);
    color: white;
    border: 1px solid rgba(155, 89, 182, 0.3);
}

@keyframes stockPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.featured-products .stock-status-detail {
    display: none;
}

.stock-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
}

.stock-indicator:last-child {
    margin-bottom: 0;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.stock-indicator.in-stock .indicator-dot {
    background: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.stock-indicator.low-stock .indicator-dot {
    background: #f39c12;
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
    animation: dotBlink 1.5s infinite;
}

.stock-indicator.out-of-stock .indicator-dot {
    background: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.stock-indicator.pre-order .indicator-dot {
    background: #9b59b6;
    box-shadow: 0 0 0 2px rgba(155, 89, 182, 0.2);
}

@keyframes dotBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.stock-indicator.in-stock .stock-count {
    color: #27ae60;
    font-weight: 500;
}

.stock-indicator.low-stock .stock-count {
    color: #f39c12;
    font-weight: 600;
}

.stock-indicator.out-of-stock .stock-count {
    color: #e74c3c;
    font-weight: 500;
}

.stock-indicator.pre-order .stock-count {
    color: #9b59b6;
    font-weight: 500;
}

.urgency-message {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #e74c3c;
    font-weight: 600;
    animation: urgencyGlow 2s ease-in-out infinite alternate;
}

@keyframes urgencyGlow {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.urgency-icon {
    font-size: 0.9rem;
}

.preorder-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #9b59b6;
    font-weight: 500;
}

.preorder-icon {
    font-size: 0.9rem;
}

/* Enhanced Add to Cart Buttons with Stock Status */
.sticky-add-to-cart.urgent {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    animation: buttonPulse 2s infinite;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.sticky-add-to-cart.preorder {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

@keyframes buttonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    }
}

.sticky-add-to-cart.out-of-stock {
    background: #95a5a6;
    cursor: not-allowed;
    opacity: 0.7;
}

.sticky-add-to-cart.out-of-stock:hover {
    transform: none;
    box-shadow: none;
}

/* Stock Progress Bar */
.stock-progress {
    margin-top: 0.5rem;
}

.stock-progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.stock-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.stock-progress-fill.high {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.stock-progress-fill.medium {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.stock-progress-fill.low {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

/* Mobile Responsive for Stock Status */
@media (max-width: 768px) {
    .stock-badge {
        top: 0.6rem;
        left: 0.6rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .stock-status-detail {
        padding: 0.6rem;
        margin: 0.6rem 0;
    }
    
    .stock-indicator {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .urgency-message,
    .preorder-info {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .urgency-icon,
    .preorder-icon {
        font-size: 0.8rem;
    }
}

/* Modal Stock Status Styles */
.stock-status-modal {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.restock-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 0.5rem;
}

.restock-icon {
    font-size: 0.9rem;
}

/* Enhanced Quick View Buttons */
.quick-view-actions .add-to-cart-btn.urgent,
.quick-view-actions .quick-buy-btn.urgent {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    animation: buttonPulse 2s infinite;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.quick-view-actions .add-to-cart-btn.preorder,
.quick-view-actions .quick-buy-btn.preorder {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.quick-view-actions .add-to-cart-btn.out-of-stock {
    background: #95a5a6;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

.quick-view-actions .add-to-cart-btn.out-of-stock:hover {
    transform: none;
    box-shadow: none;
}

.notify-btn {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

/* Stock Progress in Modal */
.stock-status-modal .stock-progress {
    margin-top: 0.8rem;
}

.stock-status-modal .stock-progress-bar {
    height: 8px;
    background: rgba(233, 236, 239, 0.6);
}

/* Responsive Modal Stock Status */
@media (max-width: 768px) {
    .stock-status-modal {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .restock-info {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .restock-icon {
        font-size: 0.8rem;
    }
    
    .notify-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Exit Intent Modal Styles */
.exit-intent-modal .modal-content {
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    padding: 0;
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border: 3px solid #e74c3c;
    animation: modalBounce 0.6s ease-out;
}

@keyframes modalBounce {
    0% { transform: scale(0.3) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.05) rotate(2deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.exit-intent-container {
    padding: 2rem;
    text-align: center;
}

.exit-intent-header {
    margin-bottom: 2rem;
    position: relative;
}

.exit-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.exit-emoji {
    font-size: 3rem;
    animation: exitShake 0.8s ease-in-out infinite alternate;
}

@keyframes exitShake {
    0% { transform: translateX(0) rotate(-2deg); }
    100% { transform: translateX(-3px) rotate(2deg); }
}

.exit-wave {
    font-size: 2.5rem;
    animation: exitWave 1.5s ease-in-out infinite;
}

@keyframes exitWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    75% { transform: rotate(20deg); }
}

.exit-intent-header h2 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.exit-intent-header p {
    color: #7f8c8d;
    font-size: 1rem;
}

.cart-reminder {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.cart-reminder h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.mini-cart-preview {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cart-item-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.item-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.item-info {
    flex: 1;
    text-align: left;
}

.item-name {
    font-weight: 500;
    color: #2c3e50;
    display: block;
    font-size: 0.9rem;
}

.item-price {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1rem;
}

.more-items {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

.special-offer {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.offer-icon {
    font-size: 1.2rem;
}

.special-offer h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price-breakdown {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.discount {
    color: #2ecc71;
    font-weight: 600;
}

.price-row.final {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.8;
}

.discount-amount {
    color: #2ecc71;
    font-weight: 600;
}

.final-price {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.savings-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(46, 204, 113, 0.2);
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    color: #2ecc71;
}

.savings-icon {
    font-size: 1.2rem;
}

.exit-intent-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.complete-purchase-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% { box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3); }
    100% { box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5); }
}

.complete-purchase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.btn-timer {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.save-cart-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.maybe-later-btn {
    background: transparent;
    color: #7f8c8d;
    border: 2px solid #bdc3c7;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.maybe-later-btn:hover {
    border-color: #95a5a6;
    color: #5d6d7e;
}

.urgency-elements {
    border-top: 2px solid #ecf0f1;
    padding-top: 1.5rem;
}

.timer-container {
    margin-bottom: 1rem;
}

.timer-text {
    color: #e74c3c;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #27ae60;
    font-weight: 500;
    background: rgba(39, 174, 96, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.proof-icon {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .exit-intent-modal .modal-content {
        width: 95%;
        max-height: 85vh;
        margin: 1rem;
        border-radius: 16px;
    }
    
    .exit-intent-container {
        padding: 1.5rem;
    }
    
    .exit-intent-header h2 {
        font-size: 1.5rem;
    }
    
    .exit-emoji {
        font-size: 2.5rem;
    }
    
    .exit-wave {
        font-size: 2rem;
    }
    
    .cart-reminder {
        padding: 1rem;
    }
    
    .special-offer {
        padding: 1.5rem;
    }
    
    .special-offer h3 {
        font-size: 1.3rem;
    }
    
    .complete-purchase-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .save-cart-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cart-item-preview {
        padding: 0.6rem;
        gap: 0.8rem;
    }
    
    .item-thumb {
        width: 40px;
        height: 40px;
    }
    
    .timer-text {
        font-size: 1rem;
    }
}

/* Push Notification Styles */
.notification-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 1rem;
    z-index: 10001;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.notification-banner.show {
    transform: translateY(0);
}

/* Cart Notification Styles */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-message {
    font-weight: 500;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-icon {
    font-size: 1.5rem;
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.banner-text {
    flex: 1;
    text-align: center;
}

.banner-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.banner-text small {
    font-size: 0.85rem;
    opacity: 0.9;
}

.banner-actions {
    display: flex;
    gap: 0.8rem;
}

.banner-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.banner-btn.allow {
    background: white;
    color: #3498db;
}

.banner-btn.allow:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.banner-btn.dismiss {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.banner-btn.dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Notification Modal Styles */
.notification-modal .modal-content {
    max-width: 550px;
    width: 95%;
    padding: 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 2px solid #3498db;
}

.notification-container {
    padding: 2rem;
}

.notification-header {
    text-align: center;
    margin-bottom: 2rem;
}

.notification-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.notification-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.notification-header p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.5;
}

.notification-benefits {
    margin-bottom: 2rem;
}

.notification-benefits h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.benefit-text p {
    color: #7f8c8d;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.notification-privacy {
    background: rgba(39, 174, 96, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.privacy-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #27ae60;
    font-weight: 500;
    font-size: 0.9rem;
}

.privacy-icon {
    font-size: 1.2rem;
}

.notification-actions {
    text-align: center;
    margin-bottom: 2rem;
}

.allow-notifications-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.allow-notifications-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmerButton 2.5s infinite;
}

@keyframes shimmerButton {
    0% { left: -100%; }
    100% { left: 100%; }
}

.allow-notifications-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.btn-benefit {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

.secondary-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.maybe-later-btn,
.no-thanks-btn {
    background: transparent;
    border: none;
    color: #7f8c8d;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.maybe-later-btn:hover {
    color: #5d6d7e;
    background: #f8f9fa;
}

.no-thanks-btn {
    color: #e74c3c;
}

.no-thanks-btn:hover {
    color: #c0392b;
    background: rgba(231, 76, 60, 0.1);
}

.notification-examples {
    border-top: 2px solid #ecf0f1;
    padding-top: 1.5rem;
}

.notification-examples h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
}

.example-notifications {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.example-notification {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.example-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.example-text {
    flex: 1;
}

.example-text strong {
    color: #2c3e50;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
}

.example-text p {
    color: #7f8c8d;
    font-size: 0.8rem;
    margin: 0;
}

.example-time {
    color: #95a5a6;
    font-size: 0.75rem;
}

.notification-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.result-message {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification-banner {
        padding: 0.8rem;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .banner-actions {
        justify-content: center;
    }
    
    .banner-btn.allow {
        padding: 0.8rem 1.5rem;
    }
    
    .notification-modal .modal-content {
        margin: 1rem;
        border-radius: 16px;
    }
    
    .notification-container {
        padding: 1.5rem;
    }
    
    .notification-header h2 {
        font-size: 1.5rem;
    }
    
    .notification-icon-large {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .allow-notifications-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .secondary-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .example-notification {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .slider-navigation {
        left: 18px;
        right: 18px;
        max-width: calc(100% - 36px);
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}