/* ================================
   GLOBAL VARIABLES & RESET
   ================================ */
:root {
    --primary-orange: #E4581C;
    --primary-dark: #C74A16;
    --secondary-blue: #2C5AA0;
    --accent-green: #4CAF50;
    --dark-text: #2C3E50;
    --light-gray: #F5F7FA;
    --medium-gray: #E8ECEF;
    --border-gray: #DDE2E8;
    --white: #FFFFFF;

    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.15);

    --transition: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ================================
   SVG ICONS STYLES
   ================================ */
.icon-inline {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    stroke: currentColor;
    fill: none;
}

.icon {
    width: 24px;
    height: 24px;
    display: block;
    stroke: currentColor;
    fill: none;
}

.icon-btn {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
    fill: none;
}

.icon-sm {
    width: 18px;
    height: 18px;
    display: block;
    stroke: currentColor;
    fill: none;
}

.logo-icon {
    width: 28px;
    height: 28px;
    display: block;
    stroke: currentColor;
    fill: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: block;
    stroke: var(--primary-orange);
    fill: none;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-icon-new {
    width: 56px;
    height: 56px;
    display: block;
    stroke: var(--primary-orange);
    fill: none;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card-new:hover .service-icon-new {
    transform: scale(1.1);
    stroke: var(--primary-dark);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    display: block;
    stroke: var(--primary-orange);
    fill: none;
    margin-bottom: 15px;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
    stroke: white;
    fill: none;
}

.product-action-btn svg {
    stroke: var(--dark-text);
}

.product-action-btn:hover svg {
    stroke: white;
}

/* ================================
   TOP BAR
   ================================ */
.top-bar {
    background: var(--dark-text);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar-link,
.top-bar-social {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
    padding: 4px 8px;
}

.top-bar-link:hover,
.top-bar-social:hover {
    opacity: 1;
    color: var(--primary-orange);
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    height: 90px;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-center {
    flex: 1;
}

.search-bar {
    display: flex;
    max-width: 600px;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border-gray);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary-orange);
}

.search-button {
    padding: 12px 24px;
    background: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.search-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.nav-right {
    display: flex;
    gap: 15px;
}

.nav-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-icon-link:hover {
    background: var(--light-gray);
}

.nav-icon-link .icon {
    font-size: 22px;
}

.nav-icon-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-text);
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 8px;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links-wrapper {
    border-top: 1px solid var(--border-gray);
    padding: 12px 0;
}

.nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-link {
    padding: 10px 16px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
}

.nav-link-special {
    background: var(--primary-orange);
    color: var(--white);
}

.nav-link-special:hover {
    background: var(--primary-dark);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 20px;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dropdown-column h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.dropdown-column a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    color: var(--dark-text);
    transition: var(--transition);
}

.dropdown-column a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

/* ================================
   HERO SLIDER
   ================================ */
.hero-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 600px;
    animation: slideInUp 0.8s ease;
}

.slide-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-description {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
}

.slider-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary-large {
    background: var(--white);
    color: var(--primary-orange);
    padding: 14px 35px;
    font-size: 15px;
}

.btn-primary-large:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-large {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 35px;
    font-size: 15px;
}

.btn-secondary-large:hover {
    background: var(--white);
    color: var(--dark-text);
}

.btn-primary-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-primary-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-promo {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px;
    font-size: 14px;
}

.btn-promo:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-add-to-cart {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-newsletter {
    background: var(--primary-orange);
    color: var(--white);
    padding: 14px 35px;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
}

.btn-full {
    width: 100%;
}

.btn-view-all {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-view-all:hover {
    gap: 10px;
}

/* ================================
   FEATURES BAR
   ================================ */
.features-bar {
    background: var(--light-gray);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-gray);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 13px;
    color: #6C757D;
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #6C757D;
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* ================================
   PROMOTIONS BANNER
   ================================ */
.promotions-banner {
    padding: 60px 0;
    background: var(--white);
}

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

.promo-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.promo-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.promo-featured {
    grid-column: span 1;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
}

.promo-badge-new {
    background: var(--accent-green);
}

.promo-badge-hot {
    background: #FF5722;
}

.promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.promo-content {
    padding: 20px;
}

.promo-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.promo-description {
    font-size: 13px;
    color: #6C757D;
    margin-bottom: 15px;
}

.promo-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.price-new {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-orange);
}

.price-discount {
    background: #FFE5DD;
    color: var(--primary-orange);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

/* ================================
   CATEGORIES SECTION
   ================================ */
.categories-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.categories-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    transition: var(--transition);
}

.category-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-showcase-image {
    position: absolute;
    inset: 0;
    transition: var(--transition);
}

.category-showcase-item:hover .category-showcase-image {
    transform: scale(1.1);
}

.category-showcase-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--white);
    z-index: 2;
}

.category-showcase-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-showcase-content p {
    font-size: 13px;
    opacity: 0.9;
}

/* ================================
   FEATURED PRODUCTS
   ================================ */
.featured-section {
    padding: 60px 0;
    background: var(--white);
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-gray);
    background: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.product-card-new {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card-new:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    height: 240px;
    background: var(--light-gray);
    overflow: hidden;
}

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

.product-card-new:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-label-new {
    background: var(--accent-green);
}

.product-label-hot {
    background: #FF5722;
}

.product-label-sale {
    background: var(--primary-orange);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card-new:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-action-btn:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.product-info-new {
    padding: 18px;
}

.product-category {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.product-name-new {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 42px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #FFC107;
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 12px;
    color: #999;
}

.product-price-new {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-orange);
}

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

/* ================================
   BRANDS SECTION
   ================================ */
.brands-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.brand-item {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--dark-text);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.brand-item:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
    padding: 60px 0;
    background: var(--white);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-new {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
}

.service-card-new:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon-new {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card-new h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.service-card-new p {
    color: #6C757D;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark-text);
    font-size: 14px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.about-text {
    margin-bottom: 20px;
    color: #6C757D;
    font-size: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 2px solid var(--border-gray);
    border-bottom: 2px solid var(--border-gray);
}

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

.stat-number-large {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-large {
    font-size: 13px;
    color: #6C757D;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image-item {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-item:first-child {
    grid-column: span 2;
}

/* ================================
   NEWSLETTER SECTION
   ================================ */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
    color: var(--white);
}

.newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 16px;
    opacity: 0.95;
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border: none;
    font-size: 15px;
    outline: none;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-gray);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.contact-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-info-card p {
    color: #6C757D;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.contact-link:hover {
    gap: 10px;
}

.contact-form-container {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-gray);
}

.contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-new label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-text);
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--white);
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group-new textarea {
    resize: vertical;
}

/* ================================
   FOOTER
   ================================ */
.footer-new {
    background: var(--dark-text);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo-img-footer {
    height: 70px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-description {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-size: 13px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary-orange);
}

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.payment-methods {
    color: rgba(255,255,255,0.8);
}

/* ================================
   WHATSAPP FLOAT BUTTON
   ================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1200px) {
    .dropdown-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-content {
        grid-template-columns: 220px 1fr auto;
    }

    .logo {
        height: 70px;
    }

    .logo-img {
        max-width: 220px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-title {
        font-size: 42px;
    }

    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 10px;
        font-size: 11px;
    }

    .nav-content {
        grid-template-columns: 1fr auto;
        gap: 15px;
    }

    .logo {
        height: 65px;
    }

    .logo-img {
        max-width: 200px;
    }

    .nav-center {
        grid-column: span 2;
        order: 3;
    }

    .search-input {
        font-size: 14px;
        padding: 10px 16px;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-icon-text {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        padding: 80px 20px 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links-wrapper.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 12px 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 0;
        margin-top: 10px;
        background: #f9f9f9;
        border-radius: 8px;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-description {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .products-carousel {
        grid-template-columns: 1fr;
    }

    .categories-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .about-image-item:first-child {
        grid-column: span 1;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .promotions-grid,
    .products-carousel {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 25px;
    }

    .logo {
        height: 60px;
    }

    .logo-img {
        max-width: 180px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-description {
        font-size: 14px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .categories-showcase {
        grid-template-columns: 1fr;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* ================================
   COTIZACIÓN EXPRESS - PROFESSIONAL QUOTATION SYSTEM
   ================================ */

/* Main Grid Layout */
.cotizacion-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: calc(100vh - 100px);
}

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

/* Panel Styling */
.cotizacion-panel {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cotizacion-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.panel-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 30px;
    text-align: center;
}

.panel-header h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: var(--font-headings);
}

.panel-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

/* Search Section */
.search-section {
    padding: 24px;
}

.search-box-quote {
    position: relative;
    margin-bottom: 20px;
}

.search-input-quote {
    width: 100%;
    padding: 14px 45px 14px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.search-input-quote:focus {
    outline: none;
    border-color: #E4581C;
    box-shadow: 0 0 0 3px rgba(228, 88, 28, 0.1);
}

.search-icon-quote {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #95a5a6;
    pointer-events: none;
}

.filter-section {
    margin-top: 16px;
}

.filter-section label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-quote {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.select-quote:focus {
    outline: none;
    border-color: #E4581C;
    box-shadow: 0 0 0 3px rgba(228, 88, 28, 0.1);
}

/* Products List */
.products-list-quote {
    padding: 0 24px 24px;
    max-height: 500px;
    overflow-y: auto;
}

.products-list-quote::-webkit-scrollbar {
    width: 8px;
}

.products-list-quote::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-list-quote::-webkit-scrollbar-thumb {
    background: #E4581C;
    border-radius: 10px;
}

.product-item-quote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.product-item-quote:hover {
    background: #fff;
    border-color: #E4581C;
    transform: translateX(4px);
}

.product-info-quote h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 6px 0;
}

.product-category-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #E4581C;
    background: rgba(228, 88, 28, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-quote {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
    margin: 4px 0 0 0;
}

.btn-add-quote {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #E4581C, #FF8C00);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-add-quote:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(228, 88, 28, 0.3);
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

/* Client Information Section */
.client-info-section {
    padding: 24px;
    background: #f8f9fa;
    border-bottom: 2px solid #e1e8ed;
}

.client-info-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
    font-family: var(--font-headings);
}

.form-grid-quote {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-quote {
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.input-quote:focus {
    outline: none;
    border-color: #E4581C;
    box-shadow: 0 0 0 3px rgba(228, 88, 28, 0.1);
}

/* Quotation Items */
.quotation-items {
    padding: 24px;
    max-height: 350px;
    overflow-y: auto;
}

.quotation-items::-webkit-scrollbar {
    width: 8px;
}

.quotation-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.quotation-items::-webkit-scrollbar-thumb {
    background: #E4581C;
    border-radius: 10px;
}

.empty-quote {
    text-align: center;
    padding: 60px 20px;
    color: #95a5a6;
}

.empty-quote p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-quote small {
    font-size: 13px;
    color: #bdc3c7;
}

.quotation-item {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.quotation-item:hover {
    border-color: #E4581C;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.quote-item-info h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.quote-item-price {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 12px;
}

.quote-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-qty {
    width: 32px;
    height: 32px;
    border: 2px solid #e1e8ed;
    background: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #E4581C;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-qty:hover {
    background: #E4581C;
    color: white;
    border-color: #E4581C;
}

.qty-display {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-size: 16px;
    font-weight: 700;
    color: #27ae60;
    margin-left: auto;
}

.btn-remove-quote {
    width: 32px;
    height: 32px;
    background: #e74c3c;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-quote:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Quotation Summary */
.quotation-summary {
    padding: 24px;
    background: #f8f9fa;
    border-top: 2px solid #e1e8ed;
    border-bottom: 2px solid #e1e8ed;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
    color: #555;
}

.summary-row.total {
    border-top: 2px solid #E4581C;
    margin-top: 10px;
    padding-top: 16px;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

/* Action Buttons */
.quotation-actions {
    padding: 24px;
    display: flex;
    gap: 12px;
}

.btn-quote {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-headings);
}

.btn-primary-quote {
    background: linear-gradient(135deg, #E4581C, #FF8C00);
    color: white;
}

.btn-primary-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 88, 28, 0.4);
}

.btn-secondary-quote {
    background: #ecf0f1;
    color: #555;
}

.btn-secondary-quote:hover {
    background: #bdc3c7;
    color: #2c3e50;
}

/* Responsive Design for Quotation System */
@media (max-width: 992px) {
    .cotizacion-grid {
        grid-template-columns: 1fr;
    }

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

    .quote-item-controls {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .panel-header h3 {
        font-size: 20px;
    }

    .products-list-quote {
        max-height: 400px;
    }

    .quotation-items {
        max-height: 300px;
    }

    .quotation-actions {
        flex-direction: column;
    }

    .btn-quote {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cotizacion-container {
        padding: 20px 0;
    }

    .product-item-quote {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .btn-add-quote {
        width: 100%;
    }

    .quote-item-controls {
        justify-content: center;
    }
}

/* ================================
   COTIZACIÓN EXPRESS - MODAL PROFESIONAL
   ================================ */

/* Modal Overlay */
.quotation-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.quotation-modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Container */
.quotation-modal-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

/* Close Button */
.quotation-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #E4581C;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quotation-modal-close:hover {
    background: #E4581C;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Modal Header with Logo */
.quotation-modal-header {
    background: linear-gradient(135deg, #E4581C, #FF8C00);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.quotation-modal-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Override logo filter for checkout modal */
#checkoutModal .quotation-modal-logo {
    filter: none;
}

.quotation-modal-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-headings);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Modal Content */
.quotation-modal-content {
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    padding: 30px;
}

/* Ensure checkout form content is scrollable */
#checkoutModal .quotation-modal-content {
    max-height: calc(90vh - 150px);
    overflow-y: auto;
}

.quotation-modal-content::-webkit-scrollbar {
    width: 10px;
}

.quotation-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.quotation-modal-content::-webkit-scrollbar-thumb {
    background: #E4581C;
    border-radius: 10px;
}

/* Grid Layout */
.quotation-grid-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Panel Styling */
.quotation-panel-modal {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.panel-header-modal {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 24px;
    text-align: center;
}

.panel-header-modal h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
    font-family: var(--font-headings);
}

.panel-header-modal p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
}

/* Search Section */
.search-section-modal {
    padding: 20px;
}

.search-box-modal {
    position: relative;
    margin-bottom: 16px;
}

.search-input-modal {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.search-input-modal:focus {
    outline: none;
    border-color: #E4581C;
    box-shadow: 0 0 0 3px rgba(228, 88, 28, 0.1);
}

.search-icon-modal {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #95a5a6;
}

.filter-section-modal label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-modal {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 13px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.select-modal:focus {
    outline: none;
    border-color: #E4581C;
    box-shadow: 0 0 0 3px rgba(228, 88, 28, 0.1);
}

/* Products List */
.products-list-modal {
    padding: 0 20px 20px;
    max-height: 400px;
    overflow-y: auto;
}

.products-list-modal::-webkit-scrollbar {
    width: 6px;
}

.products-list-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-list-modal::-webkit-scrollbar-thumb {
    background: #E4581C;
    border-radius: 10px;
}

.product-item-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.product-item-modal:hover {
    background: #fff;
    border-color: #E4581C;
    transform: translateX(4px);
}

.product-info-modal h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.product-category-badge-modal {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #E4581C;
    background: rgba(228, 88, 28, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-modal {
    font-size: 16px;
    font-weight: 700;
    color: #27ae60;
    margin: 3px 0 0 0;
}

.btn-add-modal {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #E4581C, #FF8C00);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-add-modal:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(228, 88, 28, 0.3);
}

.no-results-modal {
    text-align: center;
    padding: 30px 15px;
    color: #7f8c8d;
    font-size: 14px;
}

/* Client Info Section */
.client-info-section-modal {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e8ed;
}

.client-info-section-modal h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    font-family: var(--font-headings);
}

.form-grid-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.input-modal {
    padding: 10px 14px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.input-modal:focus {
    outline: none;
    border-color: #E4581C;
    box-shadow: 0 0 0 3px rgba(228, 88, 28, 0.1);
}

/* Quotation Items */
.quotation-items-modal {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.quotation-items-modal::-webkit-scrollbar {
    width: 6px;
}

.quotation-items-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.quotation-items-modal::-webkit-scrollbar-thumb {
    background: #E4581C;
    border-radius: 10px;
}

.empty-quote-modal {
    text-align: center;
    padding: 40px 15px;
    color: #95a5a6;
}

.empty-quote-modal p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.empty-quote-modal small {
    font-size: 12px;
    color: #bdc3c7;
}

.quotation-item-modal {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.quotation-item-modal:hover {
    border-color: #E4581C;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quote-item-info-modal h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 6px 0;
}

.quote-item-price-modal {
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.quote-item-controls-modal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-qty-modal {
    width: 28px;
    height: 28px;
    border: 2px solid #e1e8ed;
    background: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #E4581C;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-qty-modal:hover {
    background: #E4581C;
    color: white;
    border-color: #E4581C;
}

.qty-display-modal {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 25px;
    text-align: center;
}

.item-total-modal {
    font-size: 14px;
    font-weight: 700;
    color: #27ae60;
    margin-left: auto;
}

.btn-remove-modal {
    width: 28px;
    height: 28px;
    background: #e74c3c;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-modal:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.btn-remove-modal svg {
    width: 14px;
    height: 14px;
}

/* Summary */
.quotation-summary-modal {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

.summary-row-modal {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.summary-row-modal.total-modal {
    border-top: 2px solid #E4581C;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

/* Actions */
.quotation-actions-modal {
    padding: 20px;
    display: flex;
    gap: 10px;
}

.btn-modal {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-headings);
}

.btn-primary-modal {
    background: linear-gradient(135deg, #E4581C, #FF8C00);
    color: white;
}

.btn-primary-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 88, 28, 0.4);
}

.btn-secondary-modal {
    background: #ecf0f1;
    color: #555;
}

.btn-secondary-modal:hover {
    background: #bdc3c7;
    color: #2c3e50;
}

/* Responsive for Modal */
@media (max-width: 1200px) {
    .quotation-grid-modal {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quotation-modal-content {
        padding: 20px;
    }

    .quotation-modal-header {
        padding: 20px;
    }

    .quotation-modal-logo {
        height: 40px;
    }

    .quotation-modal-header h2 {
        font-size: 22px;
    }

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

    .quotation-actions-modal {
        flex-direction: column;
    }

    .btn-modal {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .quotation-modal-overlay {
        padding: 10px;
    }

    .quotation-modal-container {
        border-radius: 16px;
    }

    .quotation-modal-header {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .quotation-modal-logo {
        height: 35px;
    }

    .quotation-modal-header h2 {
        font-size: 20px;
    }

    .product-item-modal {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .btn-add-modal {
        width: 100%;
    }

    .quote-item-controls-modal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ================================
   CATEGORY PAGES
   ================================ */
.category-header {
    background: linear-gradient(135deg, #E4581C 0%, #FF8C00 100%);
    color: white;
    padding: 80px 0 60px;
    margin-top: 80px;
}

.category-header-content {
    max-width: 900px;
}

.category-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-headings);
}

.category-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}

.category-breadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

.category-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.category-breadcrumb a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.category-products {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.product-specs {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
    line-height: 1.5;
    min-height: 40px;
}

.category-cta {
    background: linear-gradient(135deg, #2C5AA0 0%, #1e3a8a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .category-header {
        padding: 60px 0 40px;
        margin-top: 60px;
    }

    .category-title {
        font-size: 32px;
    }

    .category-description {
        font-size: 14px;
    }

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

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* ===================================
   CHECKOUT FORM STYLES
   =================================== */
.checkout-form {
    width: 100%;
}

.checkout-form h3 {
    font-family: var(--font-headings);
    font-size: 20px;
    margin-bottom: 15px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E4581C;
    box-shadow: 0 0 0 3px rgba(228, 88, 28, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

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

.checkout-summary {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

.checkout-summary h3 {
    color: #2C3E50;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E0E0E0;
}

.checkout-items-list {
    margin-bottom: 15px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
}

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

.checkout-item .item-name {
    flex: 1;
    font-size: 14px;
    color: #2C3E50;
}

.checkout-item .item-quantity {
    color: #6C757D;
    margin: 0 15px;
    font-size: 14px;
}

.checkout-item .item-price {
    font-weight: 600;
    color: #E4581C;
    font-size: 15px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #E4581C;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-headings);
}

.btn-primary {
    background: linear-gradient(135deg, #E4581C, #FF8C00);
    color: white;
    box-shadow: 0 4px 15px rgba(228, 88, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 88, 28, 0.4);
}

.btn-secondary {
    background: #6C757D;
    color: white;
}

.btn-secondary:hover {
    background: #5A6268;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .quotation-modal-container {
        max-width: 95% !important;
        margin: 20px;
    }

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

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

/* ===================================
   LOCATIONS PAGE STYLES
   =================================== */

/* Free Shipping Banner */
.shipping-banner {
    background: linear-gradient(135deg, #E4581C, #FF8C00);
    padding: 25px 0;
    margin-top: 80px;
    box-shadow: 0 4px 20px rgba(228, 88, 28, 0.3);
    position: relative;
    overflow: hidden;
}

.shipping-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shipping-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shipping-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.icon-truck-large {
    width: 60px;
    height: 60px;
    fill: white;
    animation: truck-bounce 2s ease-in-out infinite;
}

@keyframes truck-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.shipping-text h2 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    font-family: var(--font-headings);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.shipping-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Page Header */
.locations-header {
    background: linear-gradient(135deg, #2C5AA0, #1E3A5F);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.locations-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.locations-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px 0;
    font-family: var(--font-headings);
    position: relative;
    z-index: 1;
}

.locations-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Location Card */
.location-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(228, 88, 28, 0.15);
    border-color: #E4581C;
}

.location-header {
    background: linear-gradient(135deg, #2C5AA0, #1E3A5F);
    padding: 30px;
    text-align: center;
    position: relative;
}

.location-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.icon-location-large {
    width: 45px;
    height: 45px;
    fill: #E4581C;
}

.location-header h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: var(--font-headings);
}

.location-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-badge.featured {
    background: #E4581C;
}

.location-body {
    padding: 30px;
}

.location-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.location-detail:last-child {
    margin-bottom: 0;
}

.location-detail .icon-inline {
    width: 24px;
    height: 24px;
    fill: #E4581C;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail strong {
    display: block;
    color: #2C3E50;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
}

.location-detail p {
    color: #6C757D;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.location-detail a {
    color: #E4581C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-detail a:hover {
    color: #FF8C00;
}

.location-footer {
    padding: 0 30px 30px;
}

.btn-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #E4581C, #FF8C00);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 88, 28, 0.3);
}

.btn-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 88, 28, 0.4);
}

.btn-location .icon-sm {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Location CTA Section */
.location-cta {
    background: linear-gradient(135deg, #2C5AA0, #1E3A5F);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.location-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.location-cta .cta-content {
    position: relative;
    z-index: 1;
}

.location-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-headings);
}

.location-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Responsive Locations Page */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .locations-header h1 {
        font-size: 36px;
    }

    .shipping-text h2 {
        font-size: 24px;
    }

    .icon-truck-large {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .shipping-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .shipping-text h2 {
        font-size: 22px;
    }

    .shipping-text p {
        font-size: 14px;
    }

    .locations-header {
        padding: 40px 0;
    }

    .locations-header h1 {
        font-size: 28px;
    }

    .locations-header p {
        font-size: 16px;
    }

    .locations-section {
        padding: 50px 0;
    }

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

    .location-cta h2 {
        font-size: 28px;
    }

    .location-cta p {
        font-size: 16px;
    }
}
