/*
Theme Name: JP Fashion Shop
Description: A modern e-commerce theme for fashion stores using Advanced Custom Fields
Version: 1.1
Author: JP Fashion
Template: twentytwentyfive
*/



/* ========================================
   CSS VARIABLES & GLOBAL STYLES
======================================== */

:root {
    --primary-yellow: #fcc611;
    --primary-red: #fe0000;
    --black: #000000;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--black);
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    overflow-x: hidden !important;
    font-size: 1rem;
}

/* Global Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

span {
    font-size: inherit;
}

div {
    font-size: inherit;
}

a {
    font-size: inherit;
    text-decoration: none;
}

li {
    font-size: 1rem;
    line-height: 1.6;
}

ul,
ol {
    font-size: 1rem;
}

label {
    font-size: 0.9rem;
}

input,
textarea,
select {
    font-size: 1rem;
}

button {
    font-size: 1rem;
    font-weight: 500;
}

small {
    font-size: 0.875rem;
}

strong,
b {
    font-weight: 600;
}

em,
i {
    font-style: italic;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

#page {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#footer {
    display: none !important;
}

/* ========================================
   ANIMATIONS
======================================== */

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ========================================
   WORDPRESS OVERRIDES
======================================== */

#header,
#headerimg,
.site-header,
.wp-site-blocks>*:first-child {
    display: none !important;
}

.wp-site-blocks {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.single-product,
body.single-product #page {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Mobile Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.95rem;
    }

    p {
        font-size: 0.95rem;
    }

    li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 0.95rem;
    }

    h6 {
        font-size: 0.9rem;
    }

    p {
        font-size: 0.9rem;
    }

    li {
        font-size: 0.9rem;
    }
}

/* ========================================
   NAVIGATION STYLES
======================================== */

.main-navigation {
    background: var(--black) !important;
    width: 100% !important;
    position: relative;
    z-index: 1000;
    height: 60px;
    position: sticky;
    top: 0;
}

.main-navigation .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links li a:hover {
    background: var(--primary-yellow) !important;
    color: var(--black) !important;
}

.nav-links li a[style*="background"] {
    background: rgba(255, 255, 255, 0.1) !important;
}

.nav-links li a[style*="background"]:hover {
    background: var(--primary-yellow) !important;
    color: var(--black) !important;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    max-width: 60px;
    height: auto;
    border-radius: 5px;
    margin-right: 10px;
}

.nav-logo span {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    border: 1px solid #333;
}

.mobile-nav-links li a:hover {
    background: var(--primary-yellow);
    color: var(--black);
    border-color: var(--primary-yellow);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #000;
    z-index: 9999;
    transition: left 0.3s ease;
    padding: 2rem 1.5rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.mobile-menu-title {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   PAGE HEADERS
======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-red) 100%) !important;
    width: 100% !important;
    position: relative;
    overflow: hidden;
}

.shop-header {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-red) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.shop-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
    position: relative;
    z-index: 2;
}

.shop-header p {
    font-size: 1.1rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

/* ========================================
   BANNER STYLES
======================================== */

.glass-banner {
    background-size: cover;
    background-position: top;
    position: relative;
    height: calc(100vh - 60px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4rem;
}

.banner-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.glass-effect {
    color: rgb(0, 0, 0);
    margin: 0 auto;
    padding: 3rem;
    /* border-radius: 20px; */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.banner-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
}

.banner-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
}

/* ========================================
   PRODUCT GRID & CARDS
======================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    width: 100%;
}

/* ========================================
   REUSABLE PRODUCT CARD COMPONENT
======================================== */

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    max-width: 350px;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

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

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

.product-link {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.product-image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}



.discount-badge {
    background: var(--primary-red);
    color: white;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.product-info {
    padding: 0.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-categories {
    margin-bottom: 0.25rem;
}

.category-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    border-radius: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.product-title {
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.product-title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-yellow);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.4rem;
}

.product-price.has-sale {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sale-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    font-weight: 400;
}

.sale-price {
    color: var(--primary-red);
}

.product-description {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.quick-sizes,
.quick-colors {
    margin-bottom: 0.4rem;
}

.quick-sizes small,
.quick-colors small {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #333;
    font-size: 0.8rem;
}

.quick-sizes div,
.quick-colors div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-size-btn {
    padding: 6px 12px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-size-btn:hover {
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
    color: #333;
}

.quick-color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-color-btn:hover {
    transform: scale(1.1);
    border-color: #333;
}

.btn-whatsapp-order {
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: unset;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.product-buttons {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: auto;
}

.product-buttons .btn {
    flex: 1;
    padding: 12px;
    border: none;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 0;
}

.product-buttons .btn:first-child {
    border-bottom-left-radius: 12px;
}

.product-buttons .btn:last-child {
    border-bottom-right-radius: 12px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: #333;
    border: 2px solid var(--primary-yellow);
}

.btn-primary:hover {
    background: #f39c12;
    color: #333;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25d366;
}

.product-card:has(.has-sale) {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border-color: rgba(252, 198, 17, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-red));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}



/* Product Card Categories */
.product-card .product-categories {
    margin-bottom: 0.5rem;
}

.product-card .category-tag {
    background: #ecf0f1;
    color: #7f8c8d;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-right: 5px;
}

/* Product Card Actions */
.product-card .quick-actions {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.product-card .btn-add-to-cart {
    flex: 1;
}

.product-card .btn-quick-view {
    padding: 0.75rem;
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

















/* ========================================
   PRODUCT COLORS & SIZES
======================================== */

.product-colors {
    margin: 10px 0;
}

.product-colors small {
    display: block;
    margin-bottom: 5px;
}

.color-options {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.color-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    padding: 0;
}

.product-sizes {
    margin: 10px 0;
}

.product-sizes small {
    display: block;
    margin-bottom: 5px;
}

.size-options {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}



/* ========================================
   BUTTONS
======================================== */

.btn-whatsapp-order {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: unset;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp-order:hover::before {
    left: 100%;
}

.btn-whatsapp-order:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.more-products-section {
    text-align: center;
    margin: 3rem 0;
}

.more-products-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fcc611;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 198, 17, 0.3);
    width: 100%;
    border-radius: 0px;
}

.more-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 198, 17, 0.4);
}

/* ========================================
   CATEGORY FILTER
======================================== */

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.category-filter .category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-yellow);
    background: var(--white);
    color: var(--black);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: var(--font-family);
}

.category-filter .category-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
    border-color: var(--primary-yellow);
}

.category-filter .category-btn.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* ========================================
   MOBILE FILTER TOGGLE
======================================== */

.mobile-filter-toggle {
    display: none !important;
    margin-bottom: 1rem;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fcc611 0%, #f39c12 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(252, 198, 17, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.filter-toggle-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);
    transition: left 0.5s;
}

.filter-toggle-btn:hover::before {
    left: 100%;
}

.filter-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 198, 17, 0.4);
}

.filter-toggle-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(252, 198, 17, 0.3);
}

.filter-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.filter-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mobile-show-products {
    display: none;
    margin-top: 2rem;
}

.show-products-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #fe0000 0%, #d63031 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 3px 10px rgba(254, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.show-products-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);
    transition: left 0.5s;
}

.show-products-btn:hover::before {
    left: 100%;
}

.show-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 0, 0, 0.4);
}

.show-products-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(254, 0, 0, 0.3);
}

.products-icon {
    font-size: 18px;
}

.products-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================================
   PRODUCTS PAGE LAYOUT
======================================== */

.products-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.filters-sidebar {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-title {
    margin-bottom: 1rem;
    color: #333;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.products-page .category-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px;
    margin-bottom: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #f8f9fa;
    color: #333;
}

.products-page .category-btn.active {
    background: #fcc611;
    color: #000;
}

.products-page .category-btn:hover {
    background: #e9ecef;
}

.price-display {
    font-size: 0.9rem;
    color: #666;
}

.price-display-container {
    margin-bottom: 10px;
}

.price-range-container {
    position: relative;
    margin: 20px 0;
    height: 30px;
}

.price-input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ddd;
    outline: none;
    z-index: 1;
    pointer-events: none;
}

.price-input-max {
    position: absolute;
    width: 100%;
    height: 5px;
    background: transparent;
    outline: none;
    z-index: 2;
    pointer-events: none;
}

.price-track-bg {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
}

.price-track {
    position: absolute;
    height: 5px;
    background: #fcc611;
    border-radius: 5px;
}

.sort-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.results-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.results-count {
    color: #666;
}

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

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.load-more-btn {
    padding: 15px 30px;
    background: #fcc611;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    font-size: 1rem;
}

/* ========================================
   PRICE RANGE SLIDER STYLES
======================================== */

#price-min,
#price-max {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    pointer-events: none;
    background: transparent !important;
    outline: none !important;
}

#price-min::-webkit-slider-thumb,
#price-max::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 3;
    height: 20px !important;
    width: 20px !important;
    border-radius: 50% !important;
    background: #fcc611 !important;
    background-color: #fcc611 !important;
    cursor: pointer;
    border: 2px solid #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

#price-min::-moz-range-thumb,
#price-max::-moz-range-thumb {
    -moz-appearance: none !important;
    border: 2px solid #fff !important;
    height: 16px !important;
    width: 16px !important;
    border-radius: 50% !important;
    background: #fcc611 !important;
    background-color: #fcc611 !important;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

#price-min::-ms-thumb,
#price-max::-ms-thumb {
    border: 2px solid #fff !important;
    height: 20px !important;
    width: 20px !important;
    border-radius: 50% !important;
    background: #fcc611 !important;
    background-color: #fcc611 !important;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    background: #fcc611 !important;
    background-color: #fcc611 !important;
}

/* ========================================
   SINGLE PRODUCT PAGE
======================================== */

.single-product-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 1rem 0;
}

.single-product-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb span:not(:last-child) {
    color: #ccc;
    margin: 0 0.5rem;
    font-weight: 300;
}

.breadcrumb span:last-child {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Product Main Layout */
.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Product Images */
.product-images-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    color: #999;
    font-size: 1.1rem;
}

.no-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--primary-yellow);
}

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

/* Product Info */
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.single-product-container .product-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.single-product-container .product-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.single-product-container .category-badge {
    background: linear-gradient(45deg, var(--primary-yellow), #f39c12);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Price Section */
.product-price-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(252, 198, 17, 0.2);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-red);
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Meta Section */
.product-meta-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-label {
    font-weight: 600;
    color: #666;
}

.meta-value {
    font-weight: 500;
}

.meta-value.in-stock {
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Description */
.product-description-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.description-content {
    color: #666;
    line-height: 1.8;
}

/* Product Options */
.product-options-section {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.product-options-section h4 {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.size-selector {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: var(--primary-yellow);
    background: #fff9e6;
}

.size-option.selected {
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
    color: #333;
}

.color-selector {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option:hover {
    border-color: var(--primary-yellow);
}

.color-option.selected {
    border-color: var(--primary-yellow);
    background: #fff9e6;
}

.color-swatch {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
}

.color-name {
    font-weight: 500;
}

/* Purchase Section */
.purchase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.quantity-section {
    margin-bottom: 1rem;
}

.quantity-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quantity-controls button:hover {
    background: var(--primary-yellow);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    background: white;
}

.btn-order-whatsapp {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-order-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Features */
.product-features-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
}

.product-features-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.features-list i {
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

/* Related Products */
.related-products-section {
    margin-top: 4rem;
}

.related-products-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

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

    .current-price {
        font-size: 2rem;
    }

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

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

/* ========================================
   ABOUT US PAGE
======================================== */

.about-page .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.about-page .main-content {
    padding: 0;
}

.about-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fcc611;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
}

.hero-image .about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image .about-image:hover {
    transform: translateY(-10px);
}

/* Story & Mission Section */
.story-mission {
    padding: 5rem 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.content-card {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.story-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mission-card {
    background: linear-gradient(135deg, #fcc611 0%, #f39c12 100%);
    color: #333;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.content-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fcc611 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: #fcc611;
    color: #333;
}

.cta-btn.primary:hover {
    background: #f39c12;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 198, 17, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* ========================================
   CONTACT PAGE
======================================== */

.contact-page .page-header {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-red) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.contact-page .main-content {
    padding: 3rem 0 0;
}

.contact-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-page .page-content {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-page .page-contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-page .page-contact-items {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-page .page-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-page .page-contact-icon {
    color: white;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .page-contact-icon.location {
    background: #3498db;
}

.contact-page .page-contact-icon.phone {
    background: #e74c3c;
}

.contact-page .page-contact-icon.whatsapp {
    background: #25D366;
}

.contact-page .page-contact-item h4 {
    margin: 0;
}

.contact-page .page-contact-item p {
    margin: 0;
    color: #666;
}

.contact-page .page-contact-item a {
    color: #666;
    text-decoration: none;
}

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

.contact-page .page-social-link {
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .page-social-link.facebook {
    background: #3b5998;
}

.contact-page .page-social-link.instagram {
    background: #E4405F;
}

.contact-page .page-social-link.youtube {
    background: #FF0000;
}

.contact-page .page-social-link.linkedin {
    background: #0077B5;
}

.contact-page .page-social-link.whatsapp {
    background: #25D366;
}

.contact-page .page-contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-page .page-map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.contact-page .contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-page .form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-page .form-input {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-page .form-input.full-width {
    width: 100%;
    margin-bottom: 1rem;
}

.contact-page .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
    resize: vertical;
}

.contact-page .form-submit {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

/* ========================================
   CONTACT SECTION (FRONT PAGE)
======================================== */

.contact-section {
    margin-top: 5rem !important;
    padding: 4rem 0 !important;
    background: url('./assets/home-contact-us.jpg') center/cover fixed !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    border-radius: 25px !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.contact-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    position: relative;
    z-index: 2;
}

.contact-section .map-section {
    margin-bottom: 4rem !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.contact-section .map-section iframe {
    width: 100% !important;
    height: 350px !important;
    border: none !important;
}

.contact-section h2 {
    font-size: 3rem !important;
    margin-bottom: 3rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.contact-section .social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
    flex-wrap: wrap !important;
}

.contact-section .social-link {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 18px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s ease !important;
    text-decoration: none !important;
    width: 70px !important;
    height: 70px !important;
    position: relative;
    overflow: hidden;
}

.contact-section .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.contact-section .social-link:hover::before {
    left: 100%;
}

.contact-section .social-link:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.6);
}

.contact-section .social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border-color: rgba(37, 211, 102, 0.5);
}

.contact-section .social-link.facebook {
    background: linear-gradient(135deg, #4267B2, #365899) !important;
    border-color: rgba(66, 103, 178, 0.5);
}

.contact-section .social-link.tiktok {
    background: linear-gradient(135deg, #000000, #333333) !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-section .social-link i {
    font-size: 24px !important;
    position: relative;
    z-index: 2;
}

.contact-section .contact-details {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
}

.contact-section .contact-card {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 2rem !important;
    border-radius: 20px !important;
    backdrop-filter: blur(15px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-section .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-section .contact-card:hover::before {
    opacity: 1;
}

.contact-section .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-section .contact-card h3 {
    margin-bottom: 1rem !important;
    font-size: 1.3rem !important;
    color: white !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.contact-section .contact-card h3 i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.contact-section .contact-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.contact-section .contact-card a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-section .contact-card a:hover {
    color: var(--primary-yellow) !important;
    text-shadow: 0 0 10px rgba(252, 198, 17, 0.5);
}

/* ========================================
   ARCHIVE PRODUCT PAGE
======================================== */

.archive-product .sorting-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.archive-product .sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.archive-product .pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.archive-product .no-products {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem;
}

/* ========================================
   PAGINATION
======================================== */

.pagination-wrapper ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.pagination-wrapper li {
    margin: 0;
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.pagination-wrapper a:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination-wrapper .current {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* ========================================
   PROMOTIONS SLIDER
======================================== */

.promotions-slider {
    width: 100%;
    /* margin: 2rem 0; */
    /* background: url(./assets/home-contact-us.jpg) center / cover fixed; */
    /* background: url(./assets/slider-view.jpg); */
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.promotion-slide img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.no-promotions {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.modal-image {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
}

.promotion-slider-container .slick-slide {
    outline: none;
}

.promotion-slider-container .slick-dots {
    bottom: 15px;
}

.promotion-slider-container .slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 0.5;
}

.promotion-slider-container .slick-dots li.slick-active button:before {
    opacity: 1;
}

.promotion-slider-container .slick-prev,
.promotion-slider-container .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.promotion-slider-container .slick-prev {
    left: 15px;
}

.promotion-slider-container .slick-next {
    right: 15px;
}

/* ========================================
   IMAGE MODAL
======================================== */

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    position: relative;
    text-align: center;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #fcc611;
    background: rgba(252, 198, 17, 0.2);
    transform: scale(1.1);
}

/* ========================================
   ORDER POPUP
======================================== */

.order-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.popup-title {
    margin-bottom: 1.5rem;
    color: #333;
}

.popup-detail {
    margin-bottom: 1rem;
}

.popup-buttons {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}

.popup-cancel {
    flex: 1;
    padding: 10px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

.popup-confirm {
    flex: 1;
    padding: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* ========================================
   WORDPRESS CONTENT & THEME ELEMENTS
======================================== */

/* WordPress Content */
.page-content {
    font-size: 1rem;
    line-height: 1.7;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.page-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
    font-size: 1rem;
}

.page-content li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Navigation Menu Items */
.nav-links li a {
    font-size: 1rem;
}

.mobile-nav-links li a {
    font-size: 1.1rem;
}

/* Form Elements */
.search-input {
    font-size: 1rem;
}

.form-input {
    font-size: 1rem;
}

.form-textarea {
    font-size: 1rem;
}

.form-submit {
    font-size: 1rem;
}

/* Product Elements */
.product-description {
    font-size: 0.95rem;
}

.product-meta span {
    font-size: 0.9rem;
}

.quick-sizes small {
    font-size: 0.8rem;
}

.quick-colors small {
    font-size: 0.8rem;
}

.size-btn {
    font-size: 0.85rem;
}

.color-btn {
    font-size: 0.85rem;
}

/* Filter Elements */
.filter-title {
    font-size: 1.1rem;
}

.results-count {
    font-size: 0.9rem;
}

/* Contact Elements */
.contact-card h3 {
    font-size: 1.1rem;
}

.contact-card p {
    font-size: 0.95rem;
}

/* Popup Elements */
.popup-title {
    font-size: 1.25rem;
}

.popup-detail {
    font-size: 1rem;
}

.popup-cancel,
.popup-confirm {
    font-size: 1rem;
}

/* Stats and Labels */
.stat-label {
    font-size: 0.8rem;
}

.category-tag {
    font-size: 0.75rem;
}

.sale-original {
    font-size: 0.85rem;
}

.sale-badge {
    font-size: 0.7rem;
}

/* Mobile Responsive Text */
@media (max-width: 768px) {
    .page-content {
        font-size: 0.95rem;
    }

    .page-content h1 {
        font-size: 1.75rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }

    .page-content h3 {
        font-size: 1.25rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-content {
        font-size: 0.9rem;
    }

    .page-content h1 {
        font-size: 1.5rem;
    }

    .page-content h2 {
        font-size: 1.25rem;
    }

    .page-content h3 {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .nav-links li a {
        font-size: 0.95rem;
    }

    .mobile-nav-links li a {
        font-size: 1rem;
    }
}

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

.custom-footer {
    margin-top: 3rem;
    text-align: center;
    padding: 5px;
    background: #000000;
    color: white;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.footer-text {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fcc611;
}

/* ========================================
   FRONT PAGE SPECIFIC STYLES
======================================== */

/* Front Page Product Cards - Different from Products Page */
.front-page .product-card {
    min-height: auto;
}

.front-page .product-info {
    flex-grow: 0;
    display: block;
}

.front-page .product-buttons {
    margin-top: 0.5rem;
}

.front-page .quick-sizes {
    margin: 0.5rem 0;
}

.front-page .quick-sizes small {
    color: #666;
}

.front-page .quick-sizes>div {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.front-page .quick-size-btn {
    padding: 3px 8px;
    border: 1px solid #ddd;
    background: white;
    font-size: 0.8rem;
    border-radius: 3px;
    cursor: pointer;
}

.front-page .quick-colors {
    margin: 0.5rem 0;
}

.front-page .quick-colors small {
    color: #666;
}

.front-page .quick-colors>div {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.front-page .quick-color-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
}

.front-page .more-products-section {
    text-align: center;
    margin: 3rem 0;
}

.front-page .more-products-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fcc611;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 198, 17, 0.3);
}

.front-page .more-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 198, 17, 0.4);
}

.front-page .contact-section {
    margin-top: 5rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.front-page .contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.front-page .map-section {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.front-page .map-section iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.front-page .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: center;
}

.front-page .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.front-page .social-link {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 60px;
    height: 60px;
}

.front-page .social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.front-page .social-link.whatsapp {
    background: rgba(37, 211, 102, 0.8);
}

.front-page .social-link.facebook {
    background: rgba(59, 89, 152, 0.8);
}

.front-page .social-link.tiktok {
    background: rgba(0, 0, 0, 0.8);
}

.front-page .social-link i {
    font-size: 20px;
}

.front-page .contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.front-page .contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.front-page .contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
}

.front-page .contact-card p {
    color: white;
    margin: 0;
}

.front-page .contact-card a {
    color: white;
    text-decoration: none;
}

.front-page .contact-card a:hover {
    color: #fcc611;
}

.front-page .product-price .sale-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.front-page .product-price .sale-price {
    color: #e74c3c;
}

/* ========================================
   RESPONSIVE STYLES - MOBILE FIRST
======================================== */

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }

    .desktop-menu {
        display: none !important;
    }

    .mobile-menu {
        display: block !important;
    }

    .mobile-show-products {
        display: block !important;
    }

    .mobile-filter-toggle {
        display: block !important;
        margin-bottom: 1rem !important;
    }
}

@media screen and (max-device-width: 768px) {
    .mobile-filter-toggle {
        display: block !important;
        margin-bottom: 1rem !important;
    }
}

@media (pointer: coarse) {
    .mobile-filter-toggle {
        display: block !important;
        margin-bottom: 1rem !important;
    }
}

/* Product Grid & Card Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
        padding: 1rem;
        justify-items: center;
    }

    .product-card {
        max-width: 350px;
        width: 100%;
    }

    /* Products page specific */
    .products-page .product-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .products-page .product-card {
        max-width: calc(50vw - 1rem) !important;
        min-height: 450px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0.5rem;
        justify-items: center;
    }

    .product-card {
        max-width: 100%;
        width: 100%;
        min-height: 400px;
    }

    /* Products page specific */
    .products-page .product-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .products-page .product-card {
        max-width: calc(100vw - 2rem) !important;
    }
}

/* Products Page Desktop Layout */
.products-page .main-layout {
    width: 100% !important;
    max-width: 100% !important;
}

.products-page .products-content {
    width: 100% !important;
    max-width: 100% !important;
}

.products-page .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
}



/* Products Page Mobile Responsive */
@media screen and (max-width: 768px) {
    .products-page .mobile-filter-toggle {
        display: block !important;
        margin-top: 1rem !important;
    }

    .products-page .main-layout {
        display: block !important;
        grid-template-columns: none !important;
    }

    .products-page .product-grid {
        grid-template-columns: 1fr 1fr !important;
        padding: 0.5rem !important;
        gap: 0.5rem !important;
        justify-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .products-page .container {
        padding: 0 0.5rem !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .products-page .nav-links {
        display: none !important;
    }

    .products-page .main-navigation .container {
        padding: 0 1rem !important;
        flex-direction: row !important;
    }

    .products-page .shop-header h1 {
        font-size: 1.75rem !important;
    }

    .products-page .shop-header {
        padding: 2rem 0 !important;
    }


}

@media screen and (max-width: 480px) {
    .products-page .filters-sidebar {
        width: 100% !important;
    }

    .products-page .product-grid {
        grid-template-columns: 1fr !important;
        padding: 0.5rem !important;
        gap: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .products-page .container {
        padding: 0 0.5rem !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }



    .products-page .shop-header h1 {
        font-size: 1.5rem !important;
    }
}

/* Mobile Sidebar Styles */
@media screen and (max-width: 768px) {
    .products-page #filters-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        z-index: 9999 !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1) !important;
        margin: 0 !important;
        background: #f8f9fa !important;
        display: block !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
        padding-top: 3rem !important;
    }

    .products-page #filters-sidebar.active {
        left: 0 !important;
    }

    .products-page .main-layout {
        display: block !important;
        grid-template-columns: none !important;
    }

    .products-page .product-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
        padding: 0.5rem !important;
    }

    /* Close button for mobile sidebar */
    .products-page #filters-sidebar::before {
        content: '✕';
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: #ff4757;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        z-index: 10000;
    }
}

@media screen and (max-width: 480px) {
    .products-page #filters-sidebar {
        width: 100% !important;
    }

    .products-page .product-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Products Page Mobile Responsive */
@media (max-width: 768px) {
    .main-layout {
        display: block !important;
    }

    .mobile-filter-toggle {
        display: block !important;
    }

    #filters-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        z-index: 9999 !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1) !important;
    }

    #filters-sidebar.active {
        left: 0 !important;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    #filters-sidebar {
        width: 100% !important;
    }

    .products-page .container {
        padding: 0 1rem !important;
    }
}



/* Banner Responsive */
@media (max-width: 768px) {
    .glass-banner {
        height: calc(100vh - 70px) !important;
        padding-bottom: 2rem !important;
    }

    .glass-effect {
        padding: 2rem 1.5rem !important;
        margin: 0 1rem !important;
    }

    .banner-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .banner-subtitle {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .glass-banner {
        height: 50vh !important;
        align-items: center !important;
        padding-bottom: 1.5rem !important;
    }

    .glass-effect {
        padding: 1.5rem 1rem !important;
        margin: 0 0.5rem !important;
        /* border-radius: 15px !important; */
    }

    .banner-title {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .banner-subtitle {
        font-size: 0.85rem !important;
    }
}

/* Popup Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        border-radius: 0 !important;
        padding: 2rem 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
}

/* Promotions Responsive */
@media (max-width: 768px) {
    .promotion-slide img {
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .promotion-slide img {
        height: 120px !important;
    }
}

/* Contact Section Mobile Styles */
@media (max-width: 768px) {
    .contact-section {
        margin-top: 2rem !important;
        padding: 2rem 0 !important;
    }

    .contact-section .container {
        padding: 0 1rem !important;
    }

    .contact-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-section .map-section {
        margin-bottom: 2rem !important;
    }

    .contact-section .map-section iframe {
        height: 250px !important;
    }

    .contact-section .social-links {
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-section .social-link {
        width: 50px !important;
        height: 50px !important;
        padding: 12px !important;
    }

    .contact-section .social-link i {
        font-size: 18px !important;
    }

    .contact-section .contact-details {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .contact-section .contact-card {
        padding: 1.5rem !important;
    }

    .contact-section .contact-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .contact-section .contact-card h3 i {
        font-size: 1rem !important;
    }

    .contact-section .contact-card p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .contact-section .social-link {
        width: 45px !important;
        height: 45px !important;
        padding: 10px !important;
    }

    .contact-section .social-link i {
        font-size: 16px !important;
    }

    .contact-section .contact-card {
        padding: 1rem !important;
    }

    .contact-section .contact-card h3 {
        font-size: 0.95rem !important;
    }

    .contact-section .contact-card p {
        font-size: 0.85rem !important;
    }
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
    .contact-page .page-contact-info {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-page .container {
        padding: 0 1rem !important;
    }

    .contact-page .page-header {
        padding: 2rem 0 !important;
    }

    .contact-page .main-content {
        padding: 2rem 0 0 !important;
    }

    .contact-page .contact-form {
        padding: 2rem 1rem !important;
        margin: 2rem 0 !important;
    }

    .contact-page .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .contact-page .page-contact-item {
        padding: 0.75rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }

    .contact-page .page-social-links {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .contact-page .page-map-container iframe {
        height: 250px !important;
    }
}

/* About Page Mobile Styles */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
    }

    .hero-stats {
        justify-content: center !important;
    }

    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .content-card {
        padding: 2rem !important;
    }

    .content-card h2 {
        font-size: 1.5rem !important;
    }

    .features {
        grid-template-columns: 1fr !important;
    }

    .feature-card {
        padding: 2rem !important;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
    }

    .cta-content h2 {
        font-size: 1.75rem !important;
    }

    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    .cta-btn {
        width: 200px !important;
        text-align: center !important;
    }

    .about-page .container {
        padding: 0 1rem !important;
    }

    .about-page .page-header {
        padding: 2rem 0 !important;
    }
}
/* ========================================
   IMAGE GRID SECTION
======================================== */

.jp-image-grid-section {
    padding-bottom: 4rem;
    background: #f8f9fa;
}

.jp-grid-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.jp-grid-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.jp-grid-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.jp-grid-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.jp-grid-column {
    flex: 25%;
    max-width: 25%;
    padding: 0 0.5rem;
}

.jp-grid-column img {
    margin-top: 1rem;
    vertical-align: middle;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.jp-grid-column img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.jp-no-images {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    margin: 0 2rem;
}

@media screen and (max-width: 800px) {
    .jp-grid-column {
        flex: 50%;
        max-width: 50%;
    }
    
    .jp-grid-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .jp-grid-column {
        flex: 100%;
        max-width: 100%;
    }
    
    .jp-grid-header {
        padding: 1rem;
    }
    
    .jp-grid-header h2 {
        font-size: 1.75rem;
    }
    
    .jp-grid-row {
        padding: 0 1rem;
    }
}