/* Modern CSS for Mattress Catalog */
/* ===============================
   MODERN DESIGN SYSTEM
   =============================== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #496f6a;
    --primary-light: #7ba49c;
    --primary-dark: #3d5f5a;
    --secondary-color: #f8fffe;
    --accent-color: #496f6a;
    --text-dark: #2c3e3b;
    --text-medium: #5a6c69;
    --text-light: #6b7c79;
    --white: #ffffff;
    --shadow-light: 0 4px 15px rgba(73, 111, 106, 0.08);
    --shadow-medium: 0 8px 25px rgba(73, 111, 106, 0.12);
    --shadow-heavy: 0 15px 35px rgba(73, 111, 106, 0.15);
    --shadow-luxury: 0 20px 40px rgba(73, 111, 106, 0.2);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s ease;
    --transition-smooth: all 0.4s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-soft: linear-gradient(135deg, #f8fffe 0%, #f0f7f5 100%);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

/* Typography System */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-accent {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 2rem auto;
}

/* Modern Button System */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    gap: 0.5rem;
}

.modern-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.modern-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.modern-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.modern-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.modern-btn.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(73, 111, 106, 0.1);
    width: 100%;
    overflow: visible;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 1200px;
    overflow: visible;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    overflow: visible;
    position: relative;
}

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

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

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

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.dropdown-trigger:hover,
.dropdown.active .dropdown-trigger {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    border: 1px solid rgba(73, 111, 106, 0.1);
    z-index: 9999 !important;
}

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

.dropdown-link {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Header Contact */
.header-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1rem;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
    padding: 10px;
    position: relative;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(73, 111, 106, 0.1);
}

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

.mobile-nav-close:hover {
    background: rgba(73, 111, 106, 0.1);
}

.mobile-nav-menu {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-item {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(73, 111, 106, 0.1);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-dropdown {
    margin-left: 1rem;
    margin-top: 0.5rem;
    display: none;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.8rem 0;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.mobile-dropdown-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(73, 111, 106, 0.1);
}

.mobile-contact-item {
    display: flex;
    align-items: center; /* vertical center icon and content */
    justify-content: center; /* center horizontally inside the panel */
    gap: 0.75rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

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

/* ===============================
   HERO SECTION
   =============================== */

.hero-modern {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(73, 111, 106, 0.9) 0%, 
        rgba(73, 111, 106, 0.7) 50%, 
        rgba(73, 111, 106, 0.85) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-brand {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.hero-cta.primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.hero-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* ===============================
   PRODUCTS SECTION
   =============================== */

.products-modern {
    padding: 6rem 0;
    background: var(--gradient-soft);
}

/* Hospitality Intro Section */
.hospitality-intro {
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    margin-bottom: 4rem;
    border: 1px solid rgba(73, 111, 106, 0.08);
    position: relative;
    overflow: hidden;
}

.hospitality-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.intro-content {
    margin-bottom: 3rem;
    text-align: center;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.intro-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    border: 1px solid rgba(73, 111, 106, 0.1);
}

.intro-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(73, 111, 106, 0.15);
}

.feature-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.4;
}

.intro-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(73, 111, 106, 0.05), rgba(73, 111, 106, 0.02));
    border-radius: var(--border-radius);
    border: 1px solid rgba(73, 111, 106, 0.1);
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 1rem 0 0 0;
    font-style: italic;
}

.value-proposition {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    margin-bottom: 4rem;
    border: 1px solid rgba(73, 111, 106, 0.08);
}

.value-prop-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-prop-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-prop-text {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Old styles removed - using new modern design */

.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ===============================
   CONTACT SECTION
   =============================== */

.contact-modern {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
}

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

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: white;
}

.feature-text {
    color: white;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-text p {
    opacity: 0.85;
    font-size: 0.95rem;
    color: white;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 40px rgba(73, 111, 106, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.modern-input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(73, 111, 106, 0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
    transition: var(--transition);
    font-family: inherit;
}

.modern-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(73, 111, 106, 0.1);
}

.modern-textarea {
    resize: vertical;
    min-height: 120px;
}

.modern-select {
    cursor: pointer;
}

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

.footer-modern {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.footer-stats {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}

.footer-contact-item {
    position: relative; /* allow absolute positioning of emoji */
    display: flex;
    align-items: center;
    justify-content: center; /* center content horizontally */
    padding: 1.2rem 1rem; /* small horizontal padding, emoji sits absolutely at left */
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    overflow: hidden;
}
.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: var(--primary-light);
}

/* Footer Contact Information */
.footer-contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-icon {
    display: block;
    position: static;
    margin: 0 auto 8px; /* center above heading */
    font-size: 1.8rem;
    line-height: 1;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    justify-content: center; /* vertical centering */
    align-items: center; /* horizontal centering */
    width: 100%;
    text-align: center;
    padding: 0 12px; /* small padding so text doesn't touch edges */
}

.footer-contact-details strong {
    color: white;
    font-size: 1.12rem; /* default larger heading */
    font-weight: 700;
    display: block;
    margin: 0; /* remove extra spacing so emoji aligns closely */
}

.footer-contact-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem; /* smaller subtext */
}

.footer-contact-details a:hover {
    color: var(--primary-light);
}

.footer-contact-details span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem; /* smaller subtext */
    line-height: 1.3;
}

/* Highlight phone block: keep label size consistent; normalize phone/email link sizes */
.footer-contact-details:has(a[href^="tel:"]) strong {
    /* align with other footer headings */
    font-size: 1.12rem;
    font-weight: 700;
}

/* Phone and email anchors should match footer subtext size for parity */
.footer-contact-details a[href^="tel:"],
.footer-contact-details a[href^="mailto:"] {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Address blocks: match the normal footer subtext size for consistency */
.footer-contact-details > div {
    /* use same size as links/subtext in footer for visual parity */
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-tagline {
    font-style: italic;
}

/* ===============================
   MODERN PRODUCT SHOWCASE
   =============================== */

.products-showcase-modern {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,255,254,0.95));
    padding: 4rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(73, 111, 106, 0.1);
}

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

.products-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.products-description-modern {
    color: var(--text-medium);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.product-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card-luxury {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(73, 111, 106, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(73, 111, 106, 0.08);
    position: relative;
}

/* Make the card a column flex container so we can push actions to the bottom */
.product-card-luxury {
    display: flex;
    flex-direction: column;
}

.product-card-luxury:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(73, 111, 106, 0.2);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--gradient-soft);
}

.product-image-luxury {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

/* Product Image Container */
.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-card-luxury:hover .product-image-luxury {
    transform: none;
}

.product-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.product-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(73, 111, 106, 0.3);
}

.product-content-luxury {
    padding: 2rem;
    text-align: center;
}

/* Allow content area to grow so actions can stick to the bottom */
.product-content-luxury {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 auto;
}

.product-name-luxury {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.product-description-luxury {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.product-actions-luxury {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* Ensure the action row sits at the bottom of the card */
.product-actions-luxury {
    margin-top: auto;
}

.view-details-btn {
    flex: 1;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(73, 111, 106, 0.3);
}

.amazon-btn-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 6px; /* give the icon some breathing room inside the circle */
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(73, 111, 106, 0.1);
}

.amazon-btn-luxury:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.amazon-icon {
    width: 56px; /* increased 100% from 28px */
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-showcase-modern {
        padding: 2.5rem 1.5rem;
    }
    
    .product-grid-luxury {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .products-title-modern {
        font-size: 2rem;
    }
    
    .product-actions-luxury {
        flex-direction: column;
        gap: 1rem;
    }
    
    .view-details-btn {
        width: 100%;
    }
    
    .amazon-btn-luxury {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .product-grid-luxury {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-showcase-modern {
        padding: 2rem 1rem;
    }
    
    .product-content-luxury {
        padding: 1.5rem;
    }
    
    /* Hero Mobile */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-brand {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
}

/* Product Grid Alternative Styles */
.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.product-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Header */
    .nav {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(73, 111, 106, 0.1);
        border: 2px solid var(--primary-color);
    }
    
    .mobile-nav {
        display: block;
    }
    
    /* Hero */
    .hero-modern {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-brand {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Products */
    .hospitality-intro {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-feature {
        padding: 1rem;
    }
    
    .intro-cta {
        padding: 1.5rem;
    }
    
    .value-prop-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-feature {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .feature-icon {
        margin-right: 1rem;
        margin-bottom: 0;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: var(--border-radius);
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modern-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .modern-textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .products-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .products-table {
        font-size: 0.85rem;
    }
    
    .product-name-cell {
        font-size: 0.8rem;
    }
    
    .view-product-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .footer-contact-info {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        max-width: 100%;
    }
    
    .footer-contact-item {
        padding: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* About Us responsive */
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .amazon-spotlight {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .story-title,
    .values-title {
        font-size: 2rem;
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    padding-top: 65px;
}

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

/* Header Styles */
.header {
    background: var(--secondary-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #5a8075);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 12px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.dropdown-trigger {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    display: block;
    padding: 0.5rem 0;
    cursor: pointer;
}

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

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

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background: var(--secondary-color);
    min-width: 250px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    border: 1px solid rgba(73, 111, 106, 0.1);
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: none;
    white-space: nowrap;
}

.dropdown-link:hover {
    background: rgba(73, 111, 106, 0.1);
    color: var(--primary-color);
}

.dropdown-link::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Main Content */
main {
    margin-top: 0;
}

/* Header Image Section */
.header-image-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.header-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(73, 111, 106, 0.3) 0%, 
        rgba(73, 111, 106, 0.1) 50%, 
        rgba(73, 111, 106, 0.4) 100%
    );
    z-index: 1;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
    max-width: 90%;
}

.header-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.header-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 2rem;
    border-radius: 2px;
    color: #ffffff;
    text-transform: uppercase;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Mobile adjustments for header image */
@media (max-width: 768px) {
    .header-image-section {
        height: 45vh;
        min-height: 300px;
    }
    
    .header-image {
        background-attachment: scroll; /* Parallax can cause issues on mobile */
    }
    
    .header-title {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
    }
    
    .header-subtitle {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        letter-spacing: 0.08em;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    
    .header-subtitle {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Volume Savings Section */
.volume-savings-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.volume-savings-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.volume-savings-left {
    padding-right: 2rem;
}

.volume-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-section {
    margin-top: 3rem;
}

.quote-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.volume-savings-right {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.volume-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1rem;
}

.welcome-text {
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-text {
    color: var(--text-light);
}

.quote-text {
    color: var(--text-dark);
}

.quote-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.quote-link:hover {
    color: #3d5f5a;
}

.guarantee-text {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Mobile adjustments for volume savings */
@media (max-width: 768px) {
    .volume-savings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .volume-savings-left {
        padding-right: 0;
        text-align: center;
    }
    
    .volume-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .quote-title {
        font-size: 1.4rem;
    }
    
    .volume-savings-right {
        padding: 2rem;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

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

.feature-card {
    background: var(--secondary-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(73, 111, 106, 0.1);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Featured Products */
.featured-products {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(73, 111, 106, 0.02), rgba(255, 255, 255, 0.98));
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* Ensure product cards are column flex containers so actions can be bottom-aligned */
.product-card {
    display: flex;
    flex-direction: column;
}

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

.product-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), #5a8075);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 600;
    overflow: hidden;
}

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

.product-info {
    padding: 1.5rem;
}

/* Allow the info/content area to grow so the actions row is pushed to the bottom */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 auto;
}

.product-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

/* Push action buttons to the bottom of the card */
.product-buttons {
    margin-top: auto;
}

.product-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
    width: 50%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category:hover {
    background: #3d5f5a;
    border-color: #3d5f5a;
    transform: translateY(-1px);
}

.amazon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    background: transparent;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
    width: 50%;
    min-height: 50px;
}

.amazon-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
    border-color: #3d5f5a;
    box-shadow: 0 2px 8px rgba(73, 111, 106, 0.2);
}

.amazon-button-img {
    width: 100%;
    height: 100%;
    min-height: 28px;
    object-fit: cover;
    object-position: center;
    border-radius: 23px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.product-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1.2rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    text-align: center;
    min-width: 0;
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
}

.product-category:hover {
    background: #3d5f5a;
    border-color: #3d5f5a;
    transform: translateY(-1px);
}

.amazon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    text-align: center;
    min-width: 0;
    background: transparent;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
}

.amazon-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
    border-color: #3d5f5a;
    box-shadow: 0 2px 8px rgba(73, 111, 106, 0.2);
}

.amazon-button-img {
    width: 100%;
    height: 100%;
    min-height: 28px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.view-all {
    text-align: center;
}

.view-all-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.view-all-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Product Grid Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-products {
        padding: 4rem 0;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .product-category {
        margin-right: 0;
        padding: 1.2rem;
        font-size: 1.1rem;
    }
}

/* ===============================
   MODERN ABOUT US SECTION
   =============================== */

.about-modern {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f7f5 100%);
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(73, 111, 106, 0.85) 0%, 
        rgba(73, 111, 106, 0.75) 50%, 
        rgba(73, 111, 106, 0.85) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

.about-hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0 0 2rem 0;
    opacity: 0.95;
    line-height: 1.5;
}

.about-hero-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Story Section */
.about-story-section {
    padding: 5rem 0 3rem 0;
    text-align: center;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #496f6a;
    margin: 0 0 2rem 0;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #496f6a, #7ba49c);
    border-radius: 2px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c69;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(73, 111, 106, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(73, 111, 106, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #496f6a, #7ba49c);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(73, 111, 106, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #496f6a;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #6b7c79;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

.values-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #496f6a;
    margin: 0 0 4rem 0;
    position: relative;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #496f6a, #7ba49c);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(73, 111, 106, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(73, 111, 106, 0.06);
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(73, 111, 106, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #496f6a, #7ba49c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #496f6a;
    margin: 0 0 1rem 0;
}

.value-description {
    color: #6b7c79;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Amazon Spotlight */
.amazon-spotlight {
    background: linear-gradient(135deg, #496f6a, #7ba49c);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.amazon-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.amazon-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
}

.amazon-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.amazon-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #496f6a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.amazon-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #496f6a;
}

.amazon-logo {
    height: 30px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .amazon-spotlight {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .story-title,
    .values-title {
        font-size: 2rem;
    }
}

/* Newsletter Section */

/* Newsletter Section */
.newsletter {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-mini-form .form-row {
    display: flex;
    gap: 1rem;
}

.contact-mini-form .form-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    outline: none;
    background: var(--secondary-color);
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-mini-form .form-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.contact-mini-form .form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.contact-mini-form .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 3rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    outline: none;
}

.submit-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: var(--secondary-color);
    padding: 3rem 0 1rem;
}

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

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

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        padding: 0.75rem 20px;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-color);
        box-shadow: var(--shadow);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-open {
        right: 0 !important;
        display: block !important;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(73, 111, 106, 0.1);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(73, 111, 106, 0.05);
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .product-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .product-category,
    .amazon-button {
        text-align: center;
        justify-content: center;
        flex: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-mini-form .form-row {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Products Page Styles */
.hero-secondary {
    background: linear-gradient(135deg, var(--primary-color), #5a8179);
    padding: 4rem 0 2rem;
}

.products-section {
    padding: 3rem 0;
    background: var(--secondary-color);
}

/* Products Section Main Page */
.products-section-main {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-section-main .products-showcase-modern {
    margin: 0;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

/* Individual product cards in products page */
.products-grid .product-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

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

/* Responsive adjustments for products page */
@media (max-width: 768px) {
    .hero-secondary {
        padding: 3rem 0 1.5rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-section {
        padding: 2rem 0;
    }
}

/* About & Contact Pages Styles */
.content-section {
    padding: 3rem 0;
    background: var(--secondary-color);
}

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

.content-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(73, 111, 106, 0.1);
}

.content-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.content-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Contact Page Specific Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
    border: 1px solid rgba(73, 111, 106, 0.1);
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.contact-form {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(73, 111, 106, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(73, 111, 106, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--secondary-color);
    color: #333;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(73, 111, 106, 0.1);
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: #3d5d59;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Add to Order Button */
.add-to-order-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    min-width: 60px;
}

.add-to-order-btn:hover {
    background: #3d5d59;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(73, 111, 106, 0.3);
}

.add-to-order-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(73, 111, 106, 0.2);
}

.add-to-order-btn:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-trigger {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(73, 111, 106, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.language-trigger:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
}

.language-trigger {
    padding: 0.5rem !important;
    min-width: auto !important;
}

.current-flag {
    display: block;
    width: 28px;
    height: 21px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.current-lang {
    display: none; /* Hide language text */
}

.language-menu {
    min-width: 80px;
    padding: 0.3rem 0;
}

.language-menu .dropdown-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.4rem 0.6rem;
}

.language-menu .flag-img {
    width: 28px;
    height: 21px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-menu .dropdown-link:hover {
    background: rgba(73, 111, 106, 0.1);
}

.language-menu .dropdown-link:hover .flag-img {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        display: flex !important; /* Show flag selector on mobile */
    }
    
    .current-flag {
        width: 24px;
        height: 18px;
    }
    
    .language-trigger {
        padding: 0.4rem !important;
    }
}

/* Active navigation link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive adjustments for About & Contact pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    /* About Us Header responsive */
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .amazon-spotlight {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .story-title,
    .values-title {
        font-size: 2rem;
    }
}
/* ===============================
   PRODUCT CATALOG IN CONTACT FORM
   =============================== */

.product-catalog-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 5;
}

.catalog-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.catalog-subtitle {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.8rem;
    margin-bottom: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-header:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.category-name {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.category-toggle {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item.active .category-toggle {
    transform: rotate(180deg);
}

.category-content {
    display: none;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
}

.category-item.active .category-content {
    display: block;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-sizes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.size-item {
    color: white;
    opacity: 0.9;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-catalog-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .category-header {
        padding: 0.75rem 1rem;
    }
    
    .category-content {
        padding: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 1rem;
    }
}

/* Products Table Styles */
.products-table-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(73, 111, 106, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.products-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(73, 111, 106, 0.2);
    vertical-align: middle;
    color: #333;
}

.product-row {
    transition: all 0.3s ease;
}

.product-row:hover {
    background: rgba(73, 111, 106, 0.1);
}

.product-name-cell {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 300px;
    font-size: 1.1rem;
}

.product-action-cell {
    text-align: center;
    width: 150px;
}

.view-product-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.view-product-btn:hover {
    background: #5a8b84;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(73, 111, 106, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a5a54 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
}

.modal-product-section {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.modal-product-image {
    position: sticky;
    top: 0;
}

.modal-product-image img {
    width: 100%;
    max-height: 320px; /* allow taller images but constrain to modal */
    height: auto;
    object-fit: contain; /* show entire image without cropping */
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255,255,255,0.03); /* subtle background to separate image */
}

.modal-product-details h4 {
    color: white;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.sizes-table-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sizes-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.sizes-table th {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.8rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.sizes-table td {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.size-quantity {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
}

.size-quantity:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.custom-dimension-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.custom-dimension-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.custom-dimension-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Label for custom size placed above the input inside the first TD */
/* custom-size-label removed: placeholder-only input is used */

.color-select {
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    min-width: 100px;
}

.color-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.color-select option {
    background: var(--primary-color);
    color: white;
}

.color-input {
    width: 120px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
}

.color-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.color-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.add-size-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.add-size-btn:hover {
    background: #5a8b84;
    transform: translateY(-1px);
}

.add-size-btn:disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    transform: none;
}

/* Order Summary Styles */
.order-summary {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(73, 111, 106, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-summary h5 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(73, 111, 106, 0.2);
    color: #333;
}

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

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.order-item-size {
    font-size: 0.85rem;
    color: #666;
}

.order-item-quantity {
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.remove-order-item {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.remove-order-item:hover {
    background: #c0392b;
}

/* Responsive Design for Tables */
@media (max-width: 768px) {
    .products-table-container {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .products-table {
        min-width: 400px;
        font-size: 0.9rem;
    }
    
    .products-table td {
        padding: 0.8rem;
    }
    
    .product-name-cell {
        min-width: 200px;
        font-size: 1rem;
    }
    
    .product-action-cell {
        width: 120px;
    }
    
    .view-product-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-body {
        padding: 1rem;
        gap: 1rem;
    }
    
    .modal-product-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-product-image img {
        max-height: 260px;
        height: auto;
        object-fit: contain;
    }
    
    .sizes-table-container {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .sizes-table {
        font-size: 0.8rem;
        min-width: 600px;
    }
    
    .sizes-table th,
    .sizes-table td {
        padding: 0.5rem;
    }
    
    .size-quantity,
    .color-input {
        width: 60px;
        font-size: 0.8rem;
    }
    /* Keep custom-dimension full width inside sizes table on small screens */
    .sizes-table .custom-dimension-input {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .add-size-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .order-summary {
        padding: 1rem;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .order-item-quantity,
    .remove-order-item {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* Product Detail Styles */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(73, 111, 106, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #f9f9f9;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
    background-color: #f9f9f9;
}

.main-image-container:hover .main-product-image {
    transform: none;
}

.image-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-navigation {
    opacity: 1;
}

.nav-btn {
    background: rgba(73, 111, 106, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: #f9f9f9;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(73, 111, 106, 0.3);
}

/* Product Information */
.product-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.product-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.waterproof {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.badge.fitted {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.badge.comfort {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

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

.badge.luxury {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.badge.versatile {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.badge.cotton {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.badge.premium {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.badge.decorative {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333;
}

.badge.customizable {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
}

.product-description,
.product-materials,
.product-dimensions {
    margin-bottom: 30px;
}

.product-description h3,
.product-materials h3,
.product-dimensions h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.material-grid,
.size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.material-item,
.size-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.material-item strong,
.size-item strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.material-item span,
.size-item span {
    color: #666;
    font-size: 0.95rem;
}

.product-actions {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a7e79 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(73, 111, 106, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(73, 111, 106, 0.3);
}

.amazon-icon-inline {
    width: 40px; /* increased 100% from 20px */
    height: auto;
}

/* Ensure icons fit inside their circular button and don't overflow */
.amazon-btn-luxury img,
.amazon-btn-luxury .amazon-icon,
.amazon-btn-luxury .amazon-icon-inline {
    width: auto !important;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .main-product-image {
        height: 300px;
        aspect-ratio: 1 / 1;
    }
    
    .product-info {
        padding: 30px 20px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .material-grid,
    .size-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra Small Devices (Phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .contact-form-container {
        padding: 1rem;
        margin: 0 0.25rem;
        border-radius: 8px;
    }
    
    .modern-input,
    .modern-textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .modern-btn.large {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .products-table {
        font-size: 0.8rem;
    }
    
    .view-product-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .product-catalog-section h4 {
        font-size: 1.1rem;
    }
    
    .catalog-subtitle {
        font-size: 0.85rem;
    }
}

/* Very Small Devices (320px and down) */
@media (max-width: 320px) {
    .contact-form-container {
        padding: 0.8rem;
        margin: 0;
    }
    
    .modern-input,
    .modern-textarea {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .modern-btn.large {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-icon {
        font-size: 1.2rem;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
}
