@import url('/css/theme.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.product-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.05);
}

.product-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.nav-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-logo .logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.9;
    margin-top: 4px;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
}

.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.05);
}

.nav-back:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateX(-4px);
}

.nav-back svg {
    transition: transform 0.3s ease;
}

.nav-back:hover svg {
    transform: translateX(-4px);
}

/* Page Header */
.product-header {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
    overflow: hidden;
}

/* Enhanced Header Background */
.header-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.header-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    background-size: 120% 120%, 120% 120%, 150% 150%;
    animation: patternShift 20s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes patternShift {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 0.6;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 50% 50%;
        opacity: 0.8;
    }
}

.header-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(15, 15, 21, 0.6) 40%,
        rgba(15, 15, 21, 0.6) 80%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

.header-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    animation: floatParticle 25s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 10%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    left: 20%;
    top: 70%;
    animation-delay: 9s;
    animation-duration: 25s;
}

.particle:nth-child(5) {
    left: 90%;
    top: 80%;
    animation-delay: 12s;
    animation-duration: 19s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.7;
    }
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 30%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 3;
}

.header-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 4;
    text-align: left;
}

/* Enhanced Breadcrumb */
.breadcrumb-nav {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 0.875rem 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.breadcrumb-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.breadcrumb-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.breadcrumb-link:hover svg {
    transform: scale(1.1);
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: rgba(212, 175, 55, 0.4);
}

.breadcrumb-separator svg {
    width: 16px;
    height: 16px;
}

.breadcrumb-active {
    padding: 0.5rem 0.75rem;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.breadcrumb-current::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

/* Enhanced Page Title */
.title-wrapper {
    margin-bottom: 1.25rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.15;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.title-text {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 30%, #FFD700 60%, rgba(255, 255, 255, 0.95) 70%, #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.2));
}

@keyframes titleGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.title-underline {
    display: block;
    position: relative;
    margin-top: 0.875rem;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), var(--gold), rgba(212, 175, 55, 0.4), transparent);
    border-radius: 2px;
    opacity: 0;
    animation: fadeInWidth 1.2s ease-out 0.8s forwards, underlineGlow 3s ease-in-out infinite 2s;
    transform-origin: left;
}

@keyframes fadeInWidth {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 
            0 1px 8px rgba(212, 175, 55, 0.3),
            0 0 20px rgba(212, 175, 55, 0.15);
    }
    50% {
        box-shadow: 
            0 1px 12px rgba(212, 175, 55, 0.5),
            0 0 30px rgba(212, 175, 55, 0.25);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-subtitle {
    font-family: 'Cormorant Garamond', serif;
    max-width: 700px;
    margin: 1.75rem 0 0;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Enhanced Product Count */
.header-footer {
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.product-count {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-count:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 
        0 8px 28px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
}

.count-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    color: var(--gold);
    flex-shrink: 0;
}

.count-icon svg {
    width: 24px;
    height: 24px;
}

.count-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.count-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.5px;
}

.count-label {
    font-size: 0.85rem;
    color: rgba(232, 232, 232, 0.85);
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
    animation: scrollIndicatorPulse 2s ease-in-out infinite;
    transition: opacity 0.5s ease, pointer-events 0.5s ease;
    cursor: pointer;
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 215, 0, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-arrow {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollArrowBounce 1.5s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

@keyframes scrollIndicatorPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes scrollArrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Products Main Section */
.products-main {
    position: relative;
    padding: 4rem 2rem 6rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #151515 60%, #0a0a0a 100%);
    min-height: 60vh;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Product Card */
.product-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.4) 0%, rgba(20, 20, 40, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), #FFA500, var(--gold), var(--gold), var(--gold));
    background-size: 300% 300%;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--border-gold);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1222 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.9);
    display: block;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1222 100%);
}

.product-card:hover .product-image {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* Ensure images load properly */
.product-image[src=""],
.product-image:not([src]) {
    display: none;
}

.product-image-wrapper:has(.product-image:not([src])) {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1222 100%);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-view-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.95) 0%, rgba(10, 10, 20, 1) 100%);
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.product-card:hover .product-name {
    color: var(--gold);
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.product-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.product-inquire-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.product-inquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-inquire-btn:hover::before {
    left: 100%;
}

.product-inquire-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.product-inquire-btn svg {
    transition: transform 0.3s ease;
}

.product-inquire-btn:hover svg {
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.empty-state h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.empty-btn {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-btn:hover {
    background: var(--gold);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) var(--d, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive Design */

/* Tablet Landscape (992px - 1200px) */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .header-content {
        padding: 0 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-image-wrapper {
        height: 260px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .product-header {
        min-height: 450px;
        padding: 5rem 1.5rem 3.5rem;
    }
    
    .header-content {
        padding: 0 1.5rem;
    }
    
    .page-title {
        font-size: clamp(2.2rem, 7vw, 3.8rem);
    }
    
    .page-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    
    .products-main {
        padding: 3.5rem 1.5rem 5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    
    .product-image-wrapper {
        height: 250px;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
}

/* Tablet Portrait - Fix overlap issue (768px - 850px) */
@media (max-width: 850px) and (min-width: 768px) {
    .product-header {
        padding: 4rem 1.5rem 3.5rem;
        min-height: 450px;
    }

    .header-footer {
        margin-top: 2rem;
        margin-bottom: 0;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-nav {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo .logo-text {
        font-size: 1.2rem;
    }

    .nav-logo .logo-tagline {
        font-size: 0.65rem;
    }

    .nav-back {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .product-header {
        padding: 4rem 1.5rem 3rem;
        min-height: 420px;
    }

    .scroll-indicator {
        display: none;
    }

    .breadcrumb-nav {
        margin-bottom: 2rem;
    }

    .breadcrumb {
        padding: 0.6rem 1rem;
        flex-wrap: wrap;
    }

    .breadcrumb-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
        gap: 6px;
    }

    .breadcrumb-link svg {
        width: 16px;
        height: 16px;
    }

    .breadcrumb-separator {
        padding: 0 0.4rem;
    }

    .breadcrumb-separator svg {
        width: 14px;
        height: 14px;
    }

    .breadcrumb-current {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .title-wrapper {
        margin-bottom: 1.25rem;
    }

    .page-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .title-underline {
        width: 100px;
        height: 4px;
        margin-top: 0.75rem;
    }

    .page-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        margin-top: 1.5rem;
    }

    .header-footer {
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }

    .product-count {
        padding: 0.875rem 1.5rem;
        gap: 12px;
    }

    .count-icon {
        width: 40px;
        height: 40px;
    }

    .count-icon svg {
        width: 20px;
        height: 20px;
    }

    .count-number {
        font-size: 1.6rem;
    }

    .count-label {
        font-size: 0.8rem;
    }

    .products-main {
        padding: 3rem 1rem 4rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image-wrapper {
        height: 240px;
    }

    .product-content {
        padding: 1.25rem;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .product-nav {
        padding: 0.7rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-logo .logo-tagline {
        font-size: 0.6rem;
    }
    
    .nav-back {
        font-size: 0.8rem;
        padding: 7px 14px;
    }
    
    .product-header {
        min-height: 400px;
        padding: 4rem 1.25rem 3rem;
    }
    
    .header-footer {
        margin-top: 1.75rem;
        margin-bottom: 0;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .page-title {
        font-size: clamp(2rem, 7.5vw, 3.2rem);
    }
    
    .product-count {
        padding: 0.8rem 1.25rem;
        gap: 10px;
    }
    
    .count-icon {
        width: 38px;
        height: 38px;
    }
    
    .count-icon svg {
        width: 19px;
        height: 19px;
    }
    
    .count-number {
        font-size: 1.5rem;
    }
    
    .count-label {
        font-size: 0.75rem;
    }
    
    .products-main {
        padding: 2.5rem 1.25rem 4rem;
    }
    
    .products-grid {
        gap: 1.25rem;
    }
    
    .product-image-wrapper {
        height: 230px;
    }
    
    .product-content {
        padding: 1.15rem;
    }
    
    .product-name {
        font-size: 1.25rem;
    }
    
    .cta-section {
        padding: 3.5rem 1.25rem;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .nav-logo .logo-text {
        font-size: 1rem;
    }

    .nav-logo .logo-tagline {
        display: none;
    }
    
    .nav-back {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .nav-back span {
        display: none;
    }

    .product-header {
        min-height: 380px;
        padding: 3.5rem 1rem 2.5rem;
    }

    .scroll-indicator {
        display: none;
        bottom: 1rem;
        gap: 0.5rem;
    }

    .scroll-text {
        font-size: 0.7rem;
    }

    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }

    .breadcrumb-nav {
        margin-bottom: 1.5rem;
    }

    .breadcrumb {
        padding: 0.5rem 0.875rem;
        border-radius: 10px;
    }

    .breadcrumb-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }

    .breadcrumb-link span {
        display: none;
    }

    .breadcrumb-link svg {
        width: 18px;
        height: 18px;
    }

    .breadcrumb-separator {
        padding: 0 0.3rem;
    }

    .breadcrumb-current {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }

    .title-wrapper {
        margin-bottom: 1rem;
    }

    .page-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .title-underline {
        width: 80px;
        height: 3px;
        margin-top: 0.5rem;
    }

    .page-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-top: 1.25rem;
        line-height: 1.6;
    }

    .header-footer {
        margin-top: 1.5rem;
    }

    .product-count {
        padding: 0.75rem 1.25rem;
        gap: 10px;
        flex-direction: row;
    }

    .count-icon {
        width: 36px;
        height: 36px;
    }

    .count-icon svg {
        width: 18px;
        height: 18px;
    }

    .count-content {
        gap: 2px;
    }

    .count-number {
        font-size: 1.4rem;
    }

    .count-label {
        font-size: 0.75rem;
    }

    .products-main {
        padding: 2rem 1rem 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.9rem;
    }
    
    .product-inquire-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-content h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    
    .cta-content p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .product-header {
        min-height: 350px;
        padding: 3rem 0.875rem 2rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .products-main {
        padding: 1.5rem 0.875rem 2.5rem;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .product-content {
        padding: 0.875rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-inquire-btn {
        padding: 9px 18px;
        font-size: 0.85rem;
    }
}
