/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    position: relative;
    z-index: 1000;
}

/* Top Banner Styles */
.top-banner {
    background-color: #000;
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.top-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.close-banner {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.close-banner:hover {
    opacity: 0.7;
}

/* Main Navigation Styles */
.main-nav {
    background-color: #000;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Icons Styles */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon:hover {
    background-color: #333;
    color: #fff;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: #333;
}

/* Mobile Navigation Styles */
.mobile-nav {
    display: none;
    background-color: #000;
    border-top: 1px solid #333;
    padding: 20px 0;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #333;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #333;
}

.mobile-nav-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
}

.mobile-nav-icon {
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-icon:hover {
    background-color: #333;
}

.mobile-nav-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-icons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .banner-content {
        padding: 0 15px;
    }
    
    .close-banner {
        right: 15px;
    }
    
    .top-banner {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .main-nav {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .banner-content {
        padding: 0 10px;
    }
    
    .close-banner {
        right: 10px;
    }
    
    .top-banner {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

.fade-out {
    animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}
/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== PRODUCTS PAGE STYLES ===== */

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Filter Section */
.filter-section {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: none;
    border: 1px solid #ddd;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #000;
    color: #000;
}

.filter-btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.results-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    min-width: 180px;
}

.sort-select:focus {
    outline: none;
    border-color: #000;
}

/* Filter Panel */
.filter-panel {
    display: none;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.filter-panel.active {
    display: block;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-option:hover {
    border-color: #000;
}

.filter-option.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.filter-option input[type="checkbox"] {
    display: none;
}

/* Price Range */
.price-range {
    margin-top: 10px;
}

.price-range input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

/* Products Grid */
.products-section {
    padding: 60px 0;
    background-color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 30px;
    margin-bottom: 60px;
}

/* Product Card */
.product-card {
    background-color: #fff;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-image.secondary {
    opacity: 0;
}

.product-card:hover .product-image.primary {
    opacity: 0;
}

.product-card:hover .product-image.secondary {
    opacity: 1;
}

/* Product Actions Overlay */
.product-actions {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.choose-options-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choose-options-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Product Info */
.product-info {
    padding: 20px 0;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.product-price .original-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
}

.product-price .sale-price {
    color: #e74c3c;
}

/* Stock Status */
.stock-status {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #e74c3c;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-status.in-stock {
    color: #27ae60;
}

.stock-status.low-stock {
    color: #f39c12;
}

/* Load More Section */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.load-more-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.loading-spinner p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #ddd;
}

.no-results h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.no-results p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 25px;
}

.clear-filters-btn {
    padding: 12px 25px;
    background-color: #000;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background-color: #333;
}

/* Responsive Design for Products */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px 25px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .filter-left {
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px 20px;
    }
    
    .product-actions {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .choose-options-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px 15px;
    }
    
    .product-info {
        padding: 15px 0;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .filter-panel {
        padding: 20px;
    }
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb .separator {
    color: #6c757d;
}

/* Product Detail Main */
.product-detail-main {
    padding: 2rem 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: minmax(300px, 500px) 1fr; /* 限制图片列的最大宽度为500px，最小宽度为300px */
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start; /* 确保两列顶部对齐 */
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px; /* 设置产品图片区域的最大宽度 */
}

.main-image-container {
    position: relative;
    width: 100%;
    max-width: 500px; /* 限制主图片容器的最大宽度 */
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f8f9fa;
    cursor: zoom-in;
}

.main-product-image {
    width: 100%;
    height: 100%;
    max-width: 500px; /* 限制图片本身的最大宽度 */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.05);
}

.image-zoom-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-zoom-overlay {
    opacity: 1;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    max-width: 500px; /* 限制缩略图容器的最大宽度 */
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    max-width: 80px; /* 确保缩略图不会超过设定尺寸 */
    max-height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: #000;
}

/* Product Information */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.product-price-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.original-price {
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration: line-through;
}

.sale-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc3545;
}

.stock-status {
    font-size: 0.9rem;
    font-weight: 500;
}

.stock-status.in-stock {
    color: #28a745;
}

.stock-status.low-stock {
    color: #ffc107;
}

.stock-status.out-of-stock {
    color: #dc3545;
}

.product-description {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #6c757d;
}

/* Product Options */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-label {
    font-weight: 600;
    color: #000;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Color Options */
.color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover,
.color-option.selected {
    border-color: #000;
    transform: scale(1.1);
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Size Options */
.size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
}

.size-option:hover,
.size-option.selected {
    border-color: #000;
    background-color: #000;
    color: white;
}

.size-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e9ecef;
    width: fit-content;
}

.quantity-btn {
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: #f8f9fa;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#quantityInput {
    border: none;
    padding: 0.75rem;
    width: 60px;
    text-align: center;
    font-weight: 600;
    background: none;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.add-to-cart-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Buy Now Section */
.buy-now-section {
    margin: 20px 0;
    text-align: center;
}

.buy-now-section .buy-now-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

/* Buy Now Button Styles */
.buy-now-btn {
    background-color: #000 !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
}

.buy-now-btn:hover {
    background-color: #333 !important;
    transform: translateY(-2px);
}

.buy-now-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.buy-now-btn .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.buy-now-btn.loading .btn-text {
    display: none;
}

.buy-now-btn.loading .loading-spinner {
    display: block;
}

.wishlist-btn {
    background: none;
    border: 1px solid #e9ecef;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.wishlist-btn:hover {
    border-color: #000;
    background-color: #000;
    color: white;
}

.wishlist-btn.active {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* Product Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.feature-item i {
    color: #28a745;
    width: 20px;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.meta-item strong {
    color: #000;
    min-width: 80px;
}

.meta-item span {
    color: #6c757d;
}

/* Related Products */
.related-products {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.related-products .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Image Zoom Modal */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.zoom-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

#zoomedImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.zoom-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.zoom-nav-btn {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    pointer-events: all;
    transition: background-color 0.3s ease;
}

.zoom-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 1000;
    animation: slideInRight 0.3s ease;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .current-price,
    .sale-price {
        font-size: 1.3rem;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wishlist-btn {
        width: 100%;
        height: 50px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .zoom-modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .zoom-navigation {
        display: none;
    }
}

/* ===== FOOTER STYLES ===== */

/* Footer Container */
.footer {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Newsletter Section */
.footer-newsletter {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333333;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #ffffff;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 16px;
    background: transparent;
    color: #333333;
    font-family: 'Inter', sans-serif;
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-input.error {
    border: 2px solid #ff4444;
    border-radius: 50px;
}

.newsletter-submit {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.newsletter-submit:hover:not(:disabled) {
    background-color: #333333;
    transform: scale(1.05);
}

.newsletter-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.newsletter-submit.loading {
    animation: pulse 2s infinite;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.newsletter-submit:hover .arrow-icon {
    transform: translateX(2px);
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

.newsletter-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Company Information */
.company-info {
    max-width: 400px;
}

.footer-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.brand-slogan {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
    font-style: italic;
}

.company-details {
    margin-bottom: 25px;
}

.company-name {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
}

.company-address {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #cccccc;
    margin: 0;
}

.contact-icon {
    color: #ffffff;
    flex-shrink: 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: flex-end;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.copyright {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

/* Form Messages */
.email-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    text-align: left;
}

.subscription-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4CAF50;
    font-size: 14px;
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.subscription-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ff4444;
    font-size: 14px;
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(255, 68, 68, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

/* Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-newsletter {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .newsletter-input {
        text-align: center;
        padding: 10px;
    }
    
    .newsletter-submit {
        align-self: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .company-info {
        max-width: none;
    }
    
    .contact-info {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 20px;
    }
    
    .footer-section-title {
        font-size: 20px;
    }
    
    .footer-nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input-wrapper {
        padding: 10px;
    }
}

/* Search Bar Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 20px 0;
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 2px solid #333;
}

.search-overlay.active .search-bar-container {
    transform: translateY(0);
}

.search-bar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-input-container {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #333;
    border-radius: 8px;
    background-color: #111;
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #666;
}

.search-input::placeholder {
    color: #888;
    font-style: italic;
}

.search-submit-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.search-submit-btn:hover {
    color: #ccc;
}

.search-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: color 0.3s ease;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-btn:hover {
    color: #ccc;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #111;
    border: 2px solid #333;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10001;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    color: #fff;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-suggestion-item:hover {
    background-color: #222;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-icon {
    color: #888;
    font-size: 14px;
}

/* Mobile Search Styles */
@media (max-width: 768px) {
    .search-bar-wrapper {
        padding: 0 15px;
        gap: 15px;
    }
    
    .search-input {
        font-size: 16px;
        padding: 12px 45px 12px 15px;
    }
    
    .search-submit-btn {
        font-size: 18px;
        right: 8px;
    }
    
    .search-close-btn {
        font-size: 20px;
        min-width: 40px;
        height: 40px;
    }
}

/* Search Results Styles */
.search-info {
    font-style: italic;
    color: #666;
    margin-right: 10px;
}

.clear-search-btn {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.search-filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-query {
    font-weight: 500;
    color: #333;
}

.clear-search {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.clear-search:hover {
    background: #c82333;
}

.results-count .search-info {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.results-count .count {
    font-weight: 600;
}

/* ===== END OF PRODUCTS PAGE STYLES ===== */

/* ===== WOODEN STACKING PEBBLES SECTION STYLES ===== */
.wooden-pebbles {
    background: #fff;
}

.wooden-pebbles-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.wooden-pebbles-content-text {
    flex: 1;
    padding-right: 20px;
}

.wooden-pebbles-image {
    flex: 1;
    max-width: 500px;
}

.wooden-pebbles-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* No rounded corners as requested */
}

.wooden-pebbles-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.wooden-pebbles-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .wooden-pebbles-layout {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .wooden-pebbles-content-text {
        padding-right: 0;
        order: 2; /* Text comes after image on mobile */
    }
    
    .wooden-pebbles-image {
        order: 1; /* Image comes first on mobile */
        max-width: 100%;
    }
    
    .wooden-pebbles-title {
        font-size: 2rem;
    }
}

/* ===== END OF WOODEN STACKING PEBBLES SECTION STYLES ===== */

/* ===== ART OF BALANCE SECTION STYLES ===== */
.art-of-balance {
    background: #fff;
}

.art-balance-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.art-balance-image {
    flex: 1;
    max-width: 500px;
}

.art-balance-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* No rounded corners as requested */
}

.art-balance-content {
    flex: 1;
    padding-left: 20px;
}

.art-balance-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.art-balance-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design for Art of Balance Section */
@media (max-width: 768px) {
    .art-balance-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .art-balance-content {
        padding-left: 0;
    }
    
    .art-balance-title {
        font-size: 2rem;
    }
    
    .art-balance-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .art-balance-title {
        font-size: 1.8rem;
    }
    
    .art-balance-layout {
        gap: 30px;
    }
}

/* ===== CHECKOUT PAGE STYLES ===== */
.checkout-main {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 40px 0;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
}

.step.active {
    color: #000000;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step.active .step-number {
    background-color: #000000;
    color: #ffffff;
}

.step-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.checkout-form {
    background-color: #ffffff;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
}

.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-method {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-method i {
    font-size: 2rem;
    color: #666666;
}

.remember-me {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #000000;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #000000;
    border-color: #000000;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.phone-group {
    margin-top: 15px;
    padding-left: 32px;
}

.pay-now-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pay-now-btn:hover:not(:disabled) {
    background-color: #333333;
    transform: translateY(-2px);
}

.pay-now-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loading-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.order-summary {
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 20px;
}

.order-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
}

.product-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex: 1;
}

.product-details h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-variant {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 10px;
}

.quantity-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666666;
}

.price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

.order-totals {
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.total-row span:first-child {
    color: #666666;
}

.total-row span:last-child {
    color: #000000;
    font-weight: 500;
}

.total-final {
    border-top: 2px solid #000000;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.total-final span {
    color: #000000;
    font-weight: 700;
}

.message-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.message-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.message-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.message-icon.success {
    color: #28a745;
}

.message-icon.error {
    color: #dc3545;
}

.message-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.message-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.message-btn {
    padding: 12px 30px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.message-btn:hover {
    background-color: #333333;
}

/* ===== END OF ART OF BALANCE SECTION STYLES ===== */

/* ===== AUTHENTICATION PAGES STYLES ===== */

/* Auth Container */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
}

.auth-form-wrapper {
    background-color: transparent;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 400px;
}

.auth-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.25rem;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-input.error {
    border-color: #dc3545;
}

.error-message {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

.auth-button {
    padding: 1rem 2rem;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.auth-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.auth-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-button.loading {
    position: relative;
    color: transparent;
}

.auth-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.auth-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.auth-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.75rem;
}

.auth-link:hover {
    color: #000000;
    text-decoration: underline;
}

.auth-link:last-child {
    margin-bottom: 0;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
    
    .auth-container {
        padding: 1rem;
    }
}

/* ===== END OF AUTHENTICATION PAGES STYLES ===== */

/* ===== SHOPPING CART STYLES ===== */

/* Shopping Cart Main Layout */
.cart-main {
    min-height: 80vh;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.continue-shopping {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-content {
    max-width: 400px;
    margin: 0 auto;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.empty-cart p {
    font-family: 'Inter', sans-serif;
    color: #6c757d;
    margin-bottom: 30px;
}

.continue-shopping-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.continue-shopping-btn:hover {
    background-color: #34495e;
}

/* Cart Table */
.cart-table-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.cart-table-header > div {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-quantity {
    text-align: center;
    width: 120px;
}

.header-total {
    text-align: right;
    width: 120px;
}

/* Cart Items */
.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f4;
}

.item-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.item-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.item-quantity {
    width: 120px;
    display: flex;
    justify-content: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background-color: #f8f9fa;
    color: #2c3e50;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e9ecef;
}

.quantity-input {
    width: 50px;
    height: 32px;
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background-color: white;
}

.quantity-input:focus {
    outline: none;
}

.item-total {
    width: 120px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.total-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.remove-item {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #dc3545;
}

/* Cart Summary */
.cart-summary {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gift-note-section {
    display: flex;
    flex-direction: column;
}

.gift-note-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.gift-note-input {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    resize: vertical;
    box-sizing: border-box;
}

.gift-note-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.cart-totals {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    width: 250px;
    margin-bottom: 10px;
}

.subtotal-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
}

.subtotal-amount {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.tax-shipping-note {
    margin-bottom: 20px;
    text-align: right;
}

.tax-shipping-note p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

.shipping-link {
    color: #007bff;
    text-decoration: none;
}

.shipping-link:hover {
    text-decoration: underline;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 250px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    background-color: #34495e;
}

.payment-options {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.payment-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-btn:hover {
    border-color: #007bff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-btn i {
    font-size: 1.2rem;
}

.shop-pay i {
    color: #5a31f4;
}

.paypal i {
    color: #0070ba;
}

.google-pay i {
    color: #4285f4;
}

/* Responsive Design for Cart */
@media (max-width: 768px) {
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cart-title {
        font-size: 2rem;
    }
    
    .cart-table-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        background-color: white;
        border-radius: 8px;
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
    }
    
    .item-product {
        justify-content: flex-start;
    }
    
    .item-quantity,
    .item-total {
        width: 100%;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }
    
    .cart-summary {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-totals {
        align-items: stretch;
    }
    
    .subtotal-row,
    .checkout-actions {
        width: 100%;
    }
    
    .payment-options {
        flex-direction: column;
    }
}

/* ===== END OF SHOPPING CART STYLES ===== */

/* ===== CHECKOUT ITEMS STYLES ===== */
.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item .order-item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    flex-shrink: 0;
}

.checkout-item .order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.checkout-item .product-details {
    flex: 1;
}

.checkout-item .product-details h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
    line-height: 1.3;
}

.checkout-item .product-variant {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
}

.checkout-item .quantity-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.checkout-item .quantity {
    color: #666;
}

.checkout-item .price {
    font-weight: 600;
    color: #333;
}
/* ===== END OF CHECKOUT ITEMS STYLES ===== */