/* ===================================================
   VENTUROX INTERNATIONAL — Premium Public Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
    /* Refined Color Palette */
    --primary: #0F2B4C;
    --primary-light: #1C3B6C;
    --secondary: #3D9AB8;
    --accent: #E8B931;
    --light-bg: #FAFBFD;
    --cream: #F5F0E8;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --text-light: #B2BEC3;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(15, 43, 76, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 43, 76, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 43, 76, 0.12);
    --shadow-hover: 0 16px 40px rgba(15, 43, 76, 0.14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

p {
    line-height: 1.8;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.public-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: var(--white);
    box-shadow: 0 1px 12px rgba(15, 43, 76, 0.07);
    transition: var(--transition);
}

.public-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(15, 43, 76, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo — bigger, transparent-friendly */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo img {
    height: 80px;
    object-fit: contain;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.public-header.scrolled .brand-logo img {
    height: 65px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.public-header.scrolled .brand-text {
    color: var(--primary);
}

/* Nav Links */
.public-nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

.public-nav a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.public-header.scrolled .public-nav a {
    color: var(--text-main);
}

.public-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: var(--transition);
    border-radius: 2px;
}

.public-nav a:hover::after {
    width: 100%;
}

.public-nav a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

/* Full-height swiper for hero */
.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 650px;
}

/* Each slide fills the swiper */
.hero-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Image fills the slide — Ken Burns zoom happens via JS */
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1);
    will-change: transform;
}

/* Navigation arrow buttons */
.hero-nav-btn {
    color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 52px !important;
    height: 52px !important;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-nav-btn::after {
    font-size: 1.1rem !important;
    font-weight: 700;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

/* Pagination bullets */
.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.3);
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 0 30px;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.85;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #2C8DA6);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(61, 154, 184, 0.35);
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(61, 154, 184, 0.45);
    color: var(--white);
}

/* ===========================
   PAGE HEADERS (inner pages)
   =========================== */

.page-header {
    padding: 160px 20px 80px;
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61,154,184,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--white);
}

.page-header p {
    color: rgba(255,255,255,0.7) !important;
}

/* Breadcrumb inside page-header */
.breadcrumb {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 7px 18px;
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.15s ease;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.55rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}


/* ===========================
   REUSABLE
   =========================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 14px auto 0;
    border-radius: 3px;
}

/* ===========================
   ABOUT US — Premium Layout
   =========================== */

.premium-about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-image-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image-block img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.8s ease;
}

.intro-image-block:hover img {
    transform: scale(1.04);
}

.glass-ornament {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(61,154,184,0.3), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 2;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.glass-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.glass-card .rich-text-content {
    color: var(--text-muted);
    line-height: 1.8;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.primary-icon { background: rgba(15, 43, 76, 0.08); color: var(--primary); }
.secondary-icon { background: rgba(61, 154, 184, 0.1); color: var(--secondary); }
.highlight-icon { background: rgba(232, 185, 49, 0.12); color: var(--accent); }

.highlight-card::before {
    background: linear-gradient(90deg, var(--accent), #D4A828) !important;
    opacity: 1 !important;
}

/* ===========================
   PRODUCTS GRID — Minimalist
   =========================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-card.minimalist {
    background: transparent;
    box-shadow: none;
    border-radius: var(--radius-md);
}

.product-card.minimalist:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.product-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #ffffff;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card.minimalist:hover .product-image-wrapper img {
    transform: scale(1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 43, 76, 0.85) 0%,
        rgba(15, 43, 76, 0.2) 40%,
        transparent 100%
    );
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    pointer-events: none;
}

.product-card.minimalist:hover .product-overlay {
    opacity: 1;
}

.product-overlay .product-title {
    color: var(--white);
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    transform: translateY(16px);
    transition: transform 0.5s ease;
}

.product-card.minimalist:hover .product-title {
    transform: translateY(0);
}

.quick-view-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    transform: translateY(-16px);
    opacity: 0;
    font-size: 0.9rem;
    pointer-events: auto;
}

.product-card.minimalist:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Legacy product styles (fallback) */
.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}
.product-info { padding: 25px; background: var(--white); }
.product-category {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* ===========================
   TESTIMONIAL SECTION
   =========================== */

.testimonials-section {
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61,154,184,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,185,49,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
}

.testimonial-card .quote-icon {
    font-size: 2.2rem;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 18px;
    display: block;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.author-info h4 {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info-panel {
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(61,154,184,0.15), transparent 70%);
    border-radius: 50%;
}

.contact-info-panel h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2rem;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    color: var(--accent);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.contact-form {
    padding: 60px 50px;
}

.form-group {
    margin-bottom: 22px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #E8ECF0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: #FAFBFD;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(61, 154, 184, 0.1);
    background: var(--white);
}

.contact-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-btn:hover {
    background: linear-gradient(135deg, var(--secondary), #2C8DA6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61,154,184,0.3);
}

/* ===========================
   FOOTER
   =========================== */

.public-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 24px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
}

/* ===========================
   RICH TEXT OVERRIDES
   =========================== */

.rich-text-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.rich-text-content p {
    margin-bottom: 12px;
}

/* ===========================
   NAV DROPDOWN
   =========================== */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 1000;
    display: flex;
    flex-direction: column !important;
    gap: 0 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 22px !important;
    color: var(--text-main) !important;
    font-weight: 500 !important;
    font-size: 0.88rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: var(--transition-fast) !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(61, 154, 184, 0.08);
    color: var(--secondary) !important;
    padding-left: 28px !important;
}

/* ===========================
   PRODUCT QUICK-VIEW MODAL  (shadcn/ui minimalist)
   =========================== */

/* Overlay backdrop */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal box */
.product-modal {
    background: #ffffff;
    border-radius: 24px;
    border: none;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 58% 42%;
    max-width: 1300px;
    width: 94vw;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}

.product-modal-overlay.active .product-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* LEFT — image panel */
.product-modal-image {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    max-height: 90vh;
    border-right: 1px solid #f0f0f0;
}

.product-modal-image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 16px;
    box-sizing: border-box;
}

.product-modal-overlay.active .product-modal-image img {
    transform: none;
}

/* Category badge on image */
.product-modal-image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(61, 154, 184, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* RIGHT — details panel */
.product-modal-details {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #ffffff;
    min-height: 0;
    max-height: 90vh;
    padding: 0;
}

.product-modal-scroll {
    padding: 48px 48px 0 48px;
    overflow-y: auto;
    flex: 1;
}

/* Scrollbar styling for details */
.product-modal-scroll::-webkit-scrollbar {
    width: 4px;
}
.product-modal-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.product-modal-scroll::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 4px;
}

/* Close button */
.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.85rem;
    transition: all 0.15s ease;
    flex-shrink: 0;
    z-index: 2;
}

.product-modal-close:hover {
    background: #f3f4f6;
    color: #111827;
    border-color: #d1d5db;
}

/* Header block */
.product-modal-header {
    margin-bottom: 24px;
    padding-right: 40px;
}

.product-modal-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.product-modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    line-height: 1.2;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

/* Divider */
.product-modal-sep {
    height: 1px;
    background: #f3f4f6;
    margin: 24px 0;
    width: 100%;
}

/* Description block */
.product-modal-desc-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 16px;
    font-weight: 600;
}

.product-modal-description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.8;
    width: 100%;
    padding-bottom: 32px;
    overflow-x: hidden !important;
}

.product-modal-description * {
    max-width: 100% !important;
}

.product-modal-description table {
    /* width: 100% !important; */
    border-collapse: collapse;
    margin-bottom: 16px;
    table-layout: auto !important;
    font-size: 0.875rem;
    color: #111827;
    border: none !important;
}

.product-modal-description tr {
    transition: background-color 0.15s ease;
}

/* Bootstrap striped alternate color */
.product-modal-description tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.03) !important;
}

.product-modal-description tr:hover {
    background-color: rgba(0, 0, 0, 0.06) !important; 
}

.product-modal-description th,
.product-modal-description td {
    padding: 0px 2px;
    border: none !important;
    border-bottom: 1px solid #e5e7eb !important;
    text-align: left;
    vertical-align: middle;
    word-break: break-word !important;
    white-space: normal !important;
    line-height: 1.5;
}

.product-modal-description th {
    font-weight: 600;
    color: #4b5563;
}

.product-modal-description p {
    margin-bottom: 16px;
}

.product-modal-description ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.product-modal-description li {
    margin-bottom: 8px;
}

.product-modal-no-desc {
    color: #9ca3af;
    font-style: italic;
    font-size: 0.95rem;
}

/* Feature badges */
.product-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.product-modal-badge {
    background: rgba(61, 154, 184, 0.1);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer CTAs */
.product-modal-footer {
    display: flex;
    gap: 16px;
    padding: 24px 48px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.product-modal-enquire {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary), #2C8DA6);
    color: white !important;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-modal-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(61, 154, 184, 0.3);
}

.product-modal-secondary {
    flex: 1;
    background: white;
    color: var(--text-main) !important;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 1px solid #d1d5db;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-modal-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* ===========================
   AMAZON-STYLE HOVER ZOOM
   =========================== */

/* Crosshair cursor on image hover (desktop only) */
@media (min-width: 993px) {
    .product-image-wrapper {
        cursor: crosshair;
    }
}

/* Zoom lens indicator on the image */
.product-zoom-lens {
    position: absolute;
    border: 2px solid rgba(61, 154, 184, 0.5);
    background: rgba(61, 154, 184, 0.08);
    pointer-events: none;
    display: none;
    z-index: 5;
    border-radius: 4px;
}

/* Zoom result panel (fixed so it escapes overflow:hidden) */
#productZoomResult {
    position: fixed;
    width: 420px;
    height: 420px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 8999;
    pointer-events: none;
    overflow: hidden;
}

#productZoomResult.active {
    display: block;
    animation: zoomPanelFadeIn 0.2s ease-out;
}

@keyframes zoomPanelFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* Hide zoom panel on mobile/tablet */
@media (max-width: 992px) {
    #productZoomResult {
        display: none !important;
    }
    .product-zoom-lens {
        display: none !important;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    padding-right: 15px; /* Prevent layout shift from scrollbar */
}

/* Responsive constraints */
@media (max-width: 992px) {
    .product-modal {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .product-modal-image {
        min-height: 45vh;
        max-height: 45vh;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .product-modal-scroll {
        padding: 32px 32px 0 32px;
    }
    
    .product-modal-footer {
        padding: 20px 32px;
        flex-direction: column;
        gap: 12px;
    }
    
    .product-modal-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-modal-overlay {
        padding: 12px;
    }
    
    .product-modal-image {
        min-height: 35vh;
        max-height: 35vh;
    }
    
    .product-modal-scroll {
        padding: 24px 24px 0 24px;
    }
    
    .product-modal-footer {
        padding: 16px 24px;
    }
    
    .product-modal-name {
        font-size: 1.3rem;
    }
}

/* ===========================
   TOAST NOTIFICATIONS
   =========================== */

.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0,0,0,0.05);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 320px;
    pointer-events: auto;
    border-left: 4px solid var(--secondary);
    
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hiding {
    transform: translateX(120%);
    opacity: 0;
}

.toast-success {
    border-left-color: #10b981;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1rem;
    padding: 2px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--primary);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 992px) {
    .nav-container { padding: 0 20px; }
    .public-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-in-out;
    }
    .public-nav.active { clip-path: circle(150% at 100% 0); }
    .public-nav ul { flex-direction: column; gap: 20px; text-align: center; }
    .mobile-menu-btn { display: flex; }
    .hero-content h1 { font-size: 2.8rem; }
    .premium-about-intro { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .section-header h2 { font-size: 2rem; }
    .products-grid { grid-template-columns: 1fr; }
    .contact-info-panel, .contact-form { padding: 40px 30px; }
}
