/* ========================================
   WAVES & VIBES - SURF LIFESTYLE STORE
   Coastal Color Palette & Beach Vibes
   ======================================== */

/* CSS Variables - Coastal Color Palette */
:root {
    --ocean-deep: #1e4d6b;
    --ocean-blue: #2c7da0;
    --ocean-light: #5fa8d3;
    --sky-blue: #89c2d9;
    --sand-beige: #d4a574;
    --sand-light: #e8d5c4;
    --off-white: #faf9f6;
    --sun-coral: #f4a261;
    --wave-teal: #61a5c2;
    --beach-grey: #6b7280;
    --deep-navy: #0f2d44;

    /* Fluid Typography */
    --font-size-hero: clamp(32px, 5vw, 64px);
    --font-size-h1: clamp(28px, 4vw, 52px);
    --font-size-h2: clamp(20px, 3vw, 32px);
    --font-size-h3: clamp(18px, 2.5vw, 28px);
    --font-size-body: clamp(14px, 1.5vw, 16px);
    --font-size-small: clamp(12px, 1.2vw, 14px);
}

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

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--deep-navy);
    background: var(--off-white);
    overflow-x: hidden;
    max-width: 100%;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Floating Cart Button */
.cart-btn-floating {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--sun-coral);
    color: white;
    border: 2px solid var(--sun-coral);
    padding: 14px 30px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    z-index: 200;
    box-shadow: 0 4px 20px rgba(244, 162, 97, 0.4);
}

.cart-btn-floating:hover {
    background: transparent;
    color: var(--sun-coral);
    box-shadow: 0 6px 30px rgba(244, 162, 97, 0.6);
}

/* Hero Section - Beach Vibes with Split Images */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.hero-image-left,
.hero-image-right {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 77, 107, 0.3) 0%, rgba(44, 125, 160, 0.25) 60%, rgba(97, 165, 194, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" d="M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,58.7C672,64,768,96,864,96C960,96,1056,64,1152,53.3L1200,48L1200,120L1152,120C1104,120,1008,120,912,120C816,120,720,120,624,120C528,120,432,120,336,120C240,120,144,120,48,120L0,120Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.shop-name {
    font-size: var(--font-size-hero);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    color: white;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.btn-hero {
    display: inline-block;
    background: var(--sun-coral);
    color: white;
    padding: 18px 50px;
    border: 2px solid var(--sun-coral);
    border-radius: 0;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-hero:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Story Section with Factory Video */
.story-section {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-video-wrapper {
    width: 100%;
    position: relative;
}

.story-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.story-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content h2 {
    font-size: 48px;
    color: var(--ocean-deep);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sun-coral), var(--wave-teal));
    margin-top: 20px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--beach-grey);
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f0f9ff;
    border-left: 4px solid var(--ocean-blue);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--ocean-deep);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--beach-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Products Section - Coastal Vibes */
.products-section {
    padding: 100px 0;
    background: var(--off-white);
}

.section-title {
    text-align: center;
    font-size: var(--font-size-h1);
    margin-bottom: 20px;
    color: var(--ocean-deep);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(-1px, -0.1vw, -0.5px);
    font-family: 'Bebas Neue', 'Impact', sans-serif;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--sun-coral), var(--wave-teal));
    margin: 20px auto;
    border-radius: 2px;
}

/* Filter - Beach Bar Style */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--ocean-blue);
    background: white;
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--ocean-blue);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filter-btn:hover {
    background: var(--ocean-blue);
    color: white;
}

.filter-btn.active {
    background: var(--ocean-blue);
    color: white;
    border-color: var(--ocean-blue);
}

/* Products Grid - Minimalist Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    border: none;
    box-shadow: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 400px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-blue);
    font-size: 48px;
    overflow: hidden;
    position: relative;
    border: none;
    margin-bottom: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.3s ease;
}

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

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6) 70%, transparent);
    padding: 50px 20px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    z-index: 10;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: 0;
    margin: 0;
}

.product-description {
    display: none;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--sun-coral);
    margin: 0;
}

.product-category {
    display: none;
}

.btn-view-product {
    display: none;
}

/* Cart Sidebar - Beach Hut Style */
.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -8px 0 40px rgba(30, 77, 107, 0.2);
    z-index: 1000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-blue));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    background: var(--off-white);
}

.empty-cart {
    text-align: center;
    color: var(--beach-grey);
    padding: 60px 20px;
    font-size: 16px;
}

.cart-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    margin-bottom: 15px;
    background: white;
    border: 1px solid rgba(30, 77, 107, 0.15);
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: var(--ocean-blue);
}

.cart-item-image {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: var(--sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-blue);
    font-size: 28px;
    border: 1px solid rgba(30, 77, 107, 0.1);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.cart-item-name {
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--ocean-deep);
    font-size: 16px;
}

.cart-item-variant {
    font-size: 14px;
    color: var(--beach-grey);
    margin-bottom: 6px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--ocean-blue);
    font-size: 15px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--ocean-blue);
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    color: var(--ocean-blue);
}

.qty-btn:hover {
    background: var(--ocean-blue);
    color: white;
}

.cart-item-remove {
    color: var(--sun-coral);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.3s;
}

.cart-item-remove:hover {
    color: #e76f51;
    text-decoration: underline;
}

.cart-footer {
    padding: 25px;
    background: white;
    border-top: 2px solid rgba(30, 77, 107, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--ocean-deep);
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    background: var(--sun-coral);
    color: white;
    border: 2px solid var(--sun-coral);
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout:hover:not(:disabled) {
    background: transparent;
    color: var(--sun-coral);
}

.btn-checkout:disabled {
    background: var(--beach-grey);
    border-color: var(--beach-grey);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 45, 68, 0.7);
    z-index: 999;
    display: none;
    backdrop-filter: blur(4px);
}

.cart-overlay.show {
    display: block;
}

/* Modal - Ocean Depth */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 45, 68, 0.8);
    overflow: auto;
    backdrop-filter: blur(6px);
}

.modal.show {
    display: block;
}

.modal-content {
    background: white;
    margin: 30px auto;
    padding: 40px;
    width: 95%;
    max-width: 1100px;
    position: relative;
    border: 1px solid rgba(30, 77, 107, 0.2);
    max-height: 95vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 36px;
    font-weight: bold;
    color: var(--beach-grey);
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content h2 {
    margin-bottom: 25px;
    color: var(--ocean-deep);
    font-size: 28px;
    font-weight: 900;
    padding-right: 50px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.modal-content h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--ocean-blue);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Details Modal - Fit without scrolling */
.product-details-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 35px;
    margin-bottom: 0;
}

.product-detail-image {
    width: 100%;
    height: 400px;
    background: white;
    border: 1px solid rgba(30, 77, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-blue);
    font-size: 64px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-detail-info h2 {
    margin-bottom: 12px;
    font-size: 26px;
}

.product-detail-price {
    font-size: 32px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--wave-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 20px;
}

.variation-selector {
    margin-bottom: 18px;
}

.variation-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--ocean-deep);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.variation-selector select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--ocean-blue);
    font-size: 14px;
    font-weight: 600;
    color: var(--ocean-deep);
    background: white;
    transition: all 0.3s;
}

.variation-selector select:focus {
    outline: none;
    border-color: var(--ocean-deep);
}

.stock-info {
    color: var(--wave-teal);
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 13px;
}

.stock-info.low-stock {
    color: var(--sun-coral);
}

.stock-info.out-of-stock {
    color: #e76f51;
}

.btn-add-to-cart {
    width: 100%;
    padding: 15px;
    background: var(--sun-coral);
    color: white;
    border: 2px solid var(--sun-coral);
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-to-cart:hover:not(:disabled) {
    background: transparent;
    color: var(--sun-coral);
}

.btn-add-to-cart:disabled {
    background: var(--beach-grey);
    border-color: var(--beach-grey);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Forms - Beach Style */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--ocean-deep);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(30, 77, 107, 0.2);
    font-size: 15px;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Checkout Summary */
.checkout-summary {
    background: var(--sand-light);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(30, 77, 107, 0.1);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(30, 77, 107, 0.1);
    font-size: 15px;
}

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

/* Discount Code Section */
.discount-code-section {
    background: var(--off-white);
    padding: 20px;
    margin: 20px 0;
    border: 2px dashed var(--ocean-blue);
}

.discount-code-section h4 {
    margin-bottom: 12px;
    color: var(--ocean-deep);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.discount-input-group input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--ocean-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-apply-discount {
    padding: 12px 24px;
    background: var(--ocean-blue);
    color: white;
    border: 2px solid var(--ocean-blue);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.btn-apply-discount:hover {
    background: transparent;
    color: var(--ocean-blue);
}

.discount-message {
    font-size: 13px;
    padding: 8px 0;
    min-height: 24px;
}

.discount-message.error {
    color: var(--sunset-orange);
    font-weight: 600;
}

.discount-message.success {
    color: var(--ocean-blue);
    font-weight: 600;
}

.discount-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--ocean-blue);
    color: white;
    padding: 12px 16px;
    margin-top: 10px;
    font-weight: 600;
}

.btn-remove-discount {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 20px;
    font-weight: 300;
}

.btn-remove-discount:hover {
    opacity: 0.7;
}

.checkout-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: var(--ocean-deep);
}

.checkout-discount {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: var(--ocean-blue);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 28px;
    font-weight: 900;
    margin: 25px 0;
    padding-top: 25px;
    border-top: 3px solid var(--ocean-blue);
    color: var(--ocean-deep);
}

/* PayPal Button */
#paypal-button-container {
    margin-top: 30px;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 80px 0;
    color: var(--beach-grey);
    font-size: 18px;
    font-weight: 600;
}

/* Responsive - Mobile Beach Vibes */

/* Large Tablets & Small Laptops - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .products-section {
        padding: 80px 0;
    }

    .hero-content {
        padding: 50px 20px;
    }

    .logo img {
        height: 150px;
    }
}

/* Tablets - 768px */
@media (max-width: 768px) {
    .cart-btn-floating {
        top: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero {
        height: 100vh;
    }

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

    .hero-image-left,
    .hero-image-right {
        width: 100%;
        height: 50%;
    }

    .logo img {
        height: 120px;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 25px;
    }

    .products-section {
        padding: 60px 0;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
    }

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

    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 20px auto;
    }

    .container {
        padding: 0 20px;
    }

    /* Increase touch targets */
    .filter-btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .btn-hero {
        padding: 16px 45px;
        font-size: 17px;
    }
}

/* Small Phones - 640px */
@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .filter-container {
        gap: 12px;
    }

    .cart-btn-floating {
        padding: 10px 20px;
        font-size: 13px;
    }

    .product-image {
        height: 280px;
    }
}

/* Extra Small Phones - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-image {
        height: 260px;
        margin-bottom: 12px;
    }

    .product-info {
        padding: 0;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 15px;
    }

    .hero-content {
        padding: 40px 15px;
        gap: 20px;
    }

    .logo img {
        height: 100px;
    }

    .btn-hero {
        padding: 14px 40px;
        font-size: 16px;
    }

    .filter-container {
        flex-direction: column;
        width: 100%;
    }

    .filter-btn {
        width: 100%;
        padding: 14px;
    }

    .cart-btn-floating {
        top: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 12px;
    }

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

    .modal-content {
        padding: 25px 15px;
        margin: 15px auto;
    }

    .product-detail-image {
        height: 300px;
    }

    .products-section {
        padding: 40px 0;
    }
}

/* Scrollbar - Ocean Theme */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--sand-light);
}

::-webkit-scrollbar-thumb {
    background: var(--ocean-blue);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ocean-deep);
}

/* Animations - Wave Motion */
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background: var(--ocean-deep);
    color: var(--off-white);
    margin-top: 80px;
    position: relative;
}

.wave-accent {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
}

.wave-accent svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h3 {
    color: var(--sun-coral);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-column h4 {
    color: var(--sky-blue);
    font-size: 16px;
    font-weight: 600;
    margin: 25px 0 12px;
}

.footer-column p {
    line-height: 1.8;
    color: var(--sand-light);
    font-size: 15px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--sand-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--sun-coral);
    padding-left: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--off-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sun-coral);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Contact Info */
.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-info strong {
    color: var(--sky-blue);
    font-weight: 600;
}

.contact-info a {
    color: var(--sand-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--sun-coral);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--off-white);
    border-radius: 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--sand-light);
    opacity: 0.7;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--sun-coral);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--sun-coral);
    color: white;
    border: 2px solid var(--sun-coral);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-form button:hover {
    background: transparent;
    color: var(--sun-coral);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: var(--sand-light);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--sand-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--sun-coral);
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer {
        margin-top: 60px;
    }

    .wave-accent {
        top: -40px;
        height: 40px;
    }

    .wave-accent svg {
        height: 40px;
    }

    .footer-content {
        padding: 40px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column:first-child {
        grid-column: 1;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}
