/* 
HYPE Specialty Coffee & Good Vibes
Website Styles - Complete with all product pages
*/

/* Reset and Base Styles */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    font-family: "Libre Baskerville", serif;
    line-height: 1.6;
}

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

/* Header Styles  */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 135, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 135, 0, 0.3);
}

.site-header:hover {
    background: rgba(42, 42, 42, 0.95);
    box-shadow: 0 8px 32px rgba(255, 135, 0, 0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-svg {
    width: 55px;
    height: 55px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 135, 0, 0.3));
}

.logo-svg:hover {
    transform: rotate(10deg) scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(255, 135, 0, 0.5));
}

.logo {
    font-family: "Odibee Sans", sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: logoFloat 4s ease-in-out infinite;
}

.logo:hover {
    color: #ff8700;
    text-shadow: 0 2px 8px rgba(255, 135, 0, 0.5);
    animation-play-state: paused;
}

/* Logo floating animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(45deg, #ff8700, #ff6b00);
    margin: 3px 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(255, 135, 0, 0.3);
}

/* Hide the checkbox */
.menu-toggle {
    display: none;
}

/* Hamburger Animation */
.menu-toggle:checked~.hamburger-menu .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ffffff;
}

.menu-toggle:checked~.hamburger-menu .hamburger-line:nth-child(2) {
    transform: scaleX(0);
}

.menu-toggle:checked~.hamburger-menu .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #ffffff;
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #2a2a2a 0%, #000000 100%);
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    box-shadow: 2px 0 20px rgba(255, 135, 0, 0.1);
}

.menu-toggle:checked~.mobile-menu {
    left: 0;
}

/* Mobile menu label styling - these wrap the navigation links */
.mobile-menu label {
    display: block;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    padding: 0;
    margin: 0.5rem 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-menu label:hover {
    color: #ff8700;
    border-left-color: #ff8700;
    background: rgba(255, 135, 0, 0.05);
}

/* Override any conflicting styles */
.mobile-menu label {
    pointer-events: auto;
}

.menu-overlay {
    pointer-events: auto;
    cursor: pointer !important;
}

/* Style the actual links inside the labels */
.mobile-menu label a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 1rem 0 1rem 1rem;
    margin: 0;
    border: none;
    background: none;
    transition: all 0.3s ease;
    font-size: inherit;
}

.mobile-menu label:hover a {
    color: #ff8700;
    padding-left: 1.5rem;
}

/* Visual feedback when menu item is clicked */
.mobile-menu label:active {
    background: rgba(255, 135, 0, 0.2);
    transform: scale(0.98);
}

.mobile-menu label:active a {
    background: rgba(255, 135, 0, 0.1);
}

/* Overlay Background */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-toggle:checked~.menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Show hamburger menu on mobile devices */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-menu a:hover {
    color: #ff8700;
    background: rgba(255, 135, 0, 0.1);
    transform: translateY(-2px);
}

/* Main Content Container */
main {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 20px;
    overflow-x: hidden;
}

#about {
    scroll-margin-top: 106px;
}

.hero-main-logo {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    animation: heroLogoFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-main-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
        
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(179deg, #ff7100 0%, #ff8700 50%, #000000 100%);
    margin: 0 -20px 50px -20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

/* NEON ANIMATION FOR HYPE TEXT */

/* Clean Hero H1 - Single Definition */
.hero h1 {
    font-family: "Odibee Sans", sans-serif;
    font-size: clamp(4rem, 12vw, 12rem);
    margin-bottom: 1rem;
    display: inline-block;
    /* Remove color here - let .neon-pulse handle it */
}

/* Neon Pulse Effect */
.neon-pulse {
    color: #002b00 !important;
    text-shadow:
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 20px #ffffff,
        0 0 40px #ffffff,
        0 0 80px #ffffff;
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow:
            0 0 5px #ffffff,
            0 0 10px #ffffff,
            0 0 20px #ffffff,
            0 0 40px #ffffff,
            0 0 80px #ffffff;
    }
    50% {
        text-shadow:
            0 0 2px #ffffff,
            0 0 5px #ffffff,
            0 0 10px #ffffff,
            0 0 20px #ffffff,
            0 0 40px #ffffff,
            0 0 80px #ffffff,
            0 0 120px #ffffff;
    }
}

/* Enhanced effect on hover */
.neon-pulse:hover {
    animation-duration: 1s;
}

/* Mobile optimization  */
@media screen and (max-width: 768px) {
    .neon-pulse {
        text-shadow:
            0 0 3px #ffffff,
            0 0 6px #ffffff,
            0 0 12px #ffffff,
            0 0 24px #ffffff,
            0 0 48px #ffffff;
    }
}

.hero .tagline {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #002b00;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.cta-button:hover {
    background: transparent;
    color: #2a2a2a;
}

/* Section Styles */
section {
    margin: 40px 0;
    padding: 2rem 0;
}

.section-title {
    font-family: "Odibee Sans", sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #ff8700;
    text-align: center;
    margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
    section {
        margin: 20px 0;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

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

.coffee-cup-placeholder {
    width: 300px;
    height: 400px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a2a2a;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* Image styling with glow effect */
#profile-photo.sectione-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #ff8700;
    box-shadow:
        0 0 20px rgba(255, 135, 0, 0.6),
        0 0 40px rgba(255, 135, 0, 0.4),
        0 0 80px rgba(255, 135, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Enhanced glow on hover */
#profile-photo.sectione-image:hover {
    transform: scale(1.05);
    border-color: #ff6b00;
    box-shadow:
        0 0 30px rgba(255, 135, 0, 0.8),
        0 0 60px rgba(255, 135, 0, 0.6),
        0 0 120px rgba(255, 135, 0, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Glowing border animation */
@keyframes glowPulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(255, 135, 0, 0.6),
            0 0 40px rgba(255, 135, 0, 0.4),
            0 0 80px rgba(255, 135, 0, 0.2),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 30px rgba(255, 135, 0, 0.8),
            0 0 60px rgba(255, 135, 0, 0.6),
            0 0 120px rgba(255, 135, 0, 0.4),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Apply pulsing glow animation */
#profile-photo.sectione-image {
    animation: glowPulse 3s ease-in-out infinite;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.product-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

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

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

.product-card:hover {
    transform: translateY(-15px);
    border-color: #ff8700;
    box-shadow: 0 20px 40px rgba(255, 135, 0, 0.2);
    text-decoration: none;
}

.product-image {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #ff8700, #ff6b00);
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a2a2a;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 135, 0, 0.3);
    transition: all 0.3s ease;
}

.product-card img.product-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    display: block;
    box-shadow: 0 10px 30px rgba(255, 135, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ff8700;
}

.product-card:hover img.product-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 135, 0, 0.4);
}

.product-image-large {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
    border: 3px solid rgba(255, 135, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 135, 0, 0.3);
    transition: all 0.3s ease;
}

.product-image-large:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 135, 0, 0.4);
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 135, 0, 0.4);
}

.product-card h3 {
    color: #ff8700;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-family: "Odibee Sans", sans-serif;
}

.product-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff8700;
    background: rgba(255, 135, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

/* Contact Section */
.contact-section {
    background: #030e03;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 0 -20px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-success {
    display: none;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1.5rem;
    border: 2px solid #45a049;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    animation: successPulse 0.5s ease-out;
}

.form-success.show {
    display: block;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success::before {
    content: "✓ ";
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Dynamic Address Field Styles */
.address-field {
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-out;
}

.address-field.show {
    visibility: visible;
    opacity: 1;
    height: auto;
    margin-bottom: 1.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: #ff8700;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ff8700;
    border-radius: 10px;
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8700;
}

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

.submit-btn {
    background: #ff8700;
    color: #2a2a2a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ff6b00;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(0deg, #ff8700 0%, #000000 100%);
    padding: 3rem 2rem 1rem 2rem;
    margin: 50px -20px 0 -20px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-section h3 {
    color: #ff8700;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ff8700;
    color: #2a2a2a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b00;
    transform: translateY(-2px);
}

/* FOOTER ADDRESS LINK STYLES */
.address-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
}

.address-link:hover {
    color: #ff8700;
    background: rgba(255, 135, 0, 0.1);
    border-color: rgba(255, 135, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 135, 0, 0.2);
}

.address-link:active {
    transform: translateY(0);
}

/* Added a subtle map icon effect on hover */
.address-link:hover::before {
    content: "📍 ";
    margin-right: 0.5rem;
}

/* Animations */
.autoShow {
    animation: autoShowAnimation both;
    animation: fadeIn 1s ease forwards;
}

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

/* Special case for neon-pulse elements */
.autoShow.neon-pulse {
    animation: autoShowAnimation both, neonPulse 2s ease-in-out infinite;
    animation: fadeIn 1s ease forwards;
}

@keyframes autoShowAnimation {
    from {
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.coffee-cup-placeholder {
    animation: gentleFloat 4s ease-in-out infinite;
}

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

.autoBLur {
    animation: autoBLurAnimation linear both;
    animation: fadeIn 1s ease forwards;
}

@keyframes autoBLurAnimation {
    0% {
        filter: blur(40px);
    }
    45%, 55% {
        filter: blur(0px);
    }
    100% {
        filter: blur(40px);
    }
}

/* ==============================================
   PINK MATCHA PAGE STYLES
   ============================================== */

/* Pink Matcha Background and Header */
body.pink-matcha {
    background-color: #000000;
}

body.pink-matcha .site-header {
    background: rgba(255, 135, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 135, 0, 0.3);
}

/* Pink Matcha Main Content */
body.pink-matcha main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 20px;
}

/* Back Button for Pink Matcha */
.back-button {
    background: #000000;
    color: #ff8700;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.back-button:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Product Hero Section for Pink Matcha */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.product-image-section {
    text-align: center;
    position: relative;
}

/* Pink Matcha Product Image */
body.pink-matcha .product-image-large {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
    box-shadow:
        0 0 30px rgba(255, 20, 147, 0.6),
        0 0 60px rgba(255, 105, 180, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
    animation: productGlow 3s ease-in-out infinite;
}

@keyframes productGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(255, 20, 147, 0.6),
            0 0 60px rgba(255, 105, 180, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 40px rgba(255, 20, 147, 0.8),
            0 0 80px rgba(255, 105, 180, 0.4),
            0 0 120px rgba(255, 20, 147, 0.3),
            0 20px 40px rgba(0, 0, 0, 0.3);
    }
}

/* Small Video Container for Pink Matcha */
.small-video-container {
    position: absolute;
    bottom: -150px;
    right: -60px;
    width: 185px;
    height: 320px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 0 25px rgba(255, 135, 0, 0.7),
        0 0 50px rgba(255, 135, 0, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 135, 0, 0.9);
    background: linear-gradient(135deg, #ff8700, #ff6b00);
    animation: videoFloat 4s ease-in-out infinite;
}

@keyframes videoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

.small-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 21px;
}

/* Product Info Section for Pink Matcha */
.product-info {
    padding: 2rem;
}

.product-title {
    font-family: "Odibee Sans", sans-serif;
    font-size: 3.5rem;
    color: #ff8700;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff8700;
    background: rgba(255, 135, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Dragon Fruit Benefits Section */
.benefits-section {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 2px solid rgba(255, 135, 0, 0.3);
}

.benefits-title {
    font-family: "Odibee Sans", sans-serif;
    font-size: 2.5rem;
    color: #ff8700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 135, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 135, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 135, 0, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8700, #ff6b00);
    color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.benefit-title {
    font-weight: bold;
    color: #ff8700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Preparation Section for Pink Matcha */
.preparation-section {
    background: linear-gradient(135deg, #ff6b00, #ff1493);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    color: #2a2a2a;
}

.preparation-title {
    font-family: "Odibee Sans", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.prep-step {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(42, 42, 42, 0.2);
}

.prep-step-icon {
    width: 60px;
    height: 60px;
    background: #2a2a2a;
    color: #ff8700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.prep-step-title {
    font-weight: bold;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Order Section for Pink Matcha */
.order-section {
    background: linear-gradient(135deg, #ff1493, #ff6b00);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    color: #2a2a2a;
}

.order-title {
    font-family: "Odibee Sans", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.order-button {
    background: #2a2a2a;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.order-button:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ==============================================
   COLD BREW PAGE STYLES
   ============================================== */

/* Cold Brew Background and Header */
body.cold-brew {
    background: linear-gradient(180deg, #001122 0%, #000000 100%);
}

body.cold-brew .site-header {
    background: rgba(0, 150, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 150, 255, 0.3);
}

/* Cold Brew Main Content */
body.cold-brew main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 20px;
}

/* Cold Brew Back Button */
body.cold-brew .back-button {
    background: #0096ff;
    color: #ffffff;
}

body.cold-brew .back-button:hover {
    background: transparent;
    color: #0096ff;
    border-color: #0096ff;
}

/* Cold Brew Product Image */
body.cold-brew .product-image-large {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0096ff, #0066cc);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
    box-shadow:
        0 0 30px rgba(0, 150, 255, 0.6),
        0 0 60px rgba(0, 150, 255, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
    animation: coldGlow 4s ease-in-out infinite;
}

@keyframes coldGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0, 150, 255, 0.6),
            0 0 60px rgba(0, 150, 255, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 40px rgba(0, 150, 255, 0.8),
            0 0 80px rgba(0, 150, 255, 0.6),
            0 0 120px rgba(0, 150, 255, 0.3),
            0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }
}

/* Cold Brew Product Title */
body.cold-brew .product-title {
    color: #0096ff;
    text-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
}

/* Cold Brew Product Price */
body.cold-brew .product-price {
    color: #0096ff;
    background: rgba(0, 150, 255, 0.1);
    border: 2px solid rgba(0, 150, 255, 0.3);
}

/* Cold Brew Process Section */
.process-section {
    background: linear-gradient(145deg, #001122, #000811);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 2px solid rgba(0, 150, 255, 0.3);
}

.process-title {
    font-family: "Odibee Sans", sans-serif;
    font-size: 2.5rem;
    color: #0096ff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 150, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, #0096ff, transparent);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0096ff, #0066cc);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-title {
    font-weight: bold;
    color: #0096ff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-time {
    color: #0096ff;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Product Details Section for Cold Brew */
.product-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.detail-card {
    background: linear-gradient(145deg, #001122, #000811);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 255, 0.1);
    transition: all 0.3s ease;
}

body.cold-brew .detail-card:hover {
    border-color: rgba(0, 150, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 150, 255, 0.2);
}

.detail-card h3 {
    font-family: "Odibee Sans", sans-serif;
    font-size: 1.8rem;
    color: #0096ff;
    margin-bottom: 1rem;
}

.detail-card p {
    line-height: 1.6;
}

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

.ingredients-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 150, 255, 0.1);
}

.ingredients-list li:last-child {
    border-bottom: none;
}

/* Cold Brew Order Section */
body.cold-brew .order-section {
    background: linear-gradient(135deg, #0096ff, #0066cc);
    color: #ffffff;
}

body.cold-brew .order-button {
    background: #ffffff;
    color: #0096ff;
}

body.cold-brew .order-button:hover {
    background: #001122;
    color: #ffffff;
}

/* Cold Brew Footer */
body.cold-brew footer {
    background: linear-gradient(0deg, #0096ff 0%, #000000 100%);
}

/* ==============================================
   VALENIO WHOLESALE PAGE STYLES
   ============================================== */

/* Valenio Background and Header */
body.valenio {
    background: linear-gradient(180deg, #2c1810 0%, #1a0e08 50%, #000000 100%);
}

body.valenio .site-header {
    background: rgba(205, 133, 63, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(205, 133, 63, 0.3);
}

/* Valenio Main Content */
body.valenio main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 20px;
}

/* Valenio Back Button */
body.valenio .back-button {
    background: #cd853f;
    color: #ffffff;
}

body.valenio .back-button:hover {
    background: transparent;
    color: #cd853f;
    border-color: #cd853f;
}

/* Valenio Product Image */
body.valenio .product-image-large {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #cd853f, #8b4513);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
    box-shadow:
        0 0 30px rgba(205, 133, 63, 0.6),
        0 0 60px rgba(139, 69, 19, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
    animation: beansGlow 3s ease-in-out infinite;
}

@keyframes beansGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(205, 133, 63, 0.6),
            0 0 60px rgba(139, 69, 19, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 40px rgba(205, 133, 63, 0.6),
            0 0 80px rgba(139, 69, 19, 0.6),
            0 0 120px rgba(205, 133, 63, 0.6),
            0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }
}

/* Valenio Product Title */
body.valenio .product-title {
    color: #cd853f;
    text-shadow: 0 0 20px rgba(205, 133, 63, 0.5);
}

/* Valenio Product Price */
body.valenio .product-price {
    color: #8b4513;
    background: rgba(205, 133, 63, 0.1);
    border: 2px solid rgba(205, 133, 63, 0.3);
}

/* Video Section for Valenio */
.video-section {
    background: linear-gradient(145deg, #2c1810, #1a0e08);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    border: 2px solid rgba(205, 133, 63, 0.3);
}

.video-title {
    font-family: "Odibee Sans", sans-serif;
    font-size: 2.5rem;
    color: #cd853f;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(205, 133, 63, 0.2);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

/* Expertise Section for Valenio */
.expertise-section {
    background: linear-gradient(135deg, #cd853f, #8b4513);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    color: #ffffff;
}

.expertise-title {
    font-family: "Odibee Sans", sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: #cd853f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.expertise-item-title {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Coffee Varieties Grid for Valenio */
.varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.variety-card {
    background: linear-gradient(145deg, #2c1810, #1a0e08);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(205, 133, 63, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.variety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(205, 133, 63, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.variety-card:hover::before {
    opacity: 1;
}

.variety-card:hover {
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(205, 133, 63, 0.2);
}

.variety-card h3 {
    font-family: "Odibee Sans", sans-serif;
    font-size: 1.8rem;
    color: #cd853f;
    margin-bottom: 1rem;
}

.variety-origin {
    font-style: italic;
    color: #cd853f;
    margin-bottom: 1rem;
    font-weight: bold;
}

.variety-card p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.variety-price {
    color: #cd853f;
    font-weight: bold;
    background: rgba(205, 133, 63, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.variety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Valenio Order Section */
body.valenio .order-section {
    background: linear-gradient(135deg, #cd853f, #8b4513);
    color: #ffffff;
}

body.valenio .order-button {
    background: #ffffff;
    color: #cd853f;
}

body.valenio .order-button:hover {
    background: #2c1810;
    color: #ffffff;
}

/* Valenio Footer */
body.valenio footer {
    background: linear-gradient(0deg, #cd853f 0%, #000000 100%);
}

/* ==============================================
   RESPONSIVE DESIGN FOR ALL PAGES
   ============================================== */

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .site-header {
        padding: 1rem;
    }

    .coffee-cup-placeholder {
        width: 250px;
        height: 300px;
    }

    #profile-photo.sectione-image {
        border-width: 2px;
        box-shadow:
            0 0 15px rgba(255, 135, 0, 0.6),
            0 0 30px rgba(255, 135, 0, 0.4),
            0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .logo-svg {
        width: 45px;
        height: 45px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Product page specific mobile styles */
    .product-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .product-image-large,
    body.pink-matcha .product-image-large,
    body.cold-brew .product-image-large,
    body.valenio .product-image-large {
        width: 300px;
        height: 300px;
        font-size: 1.5rem;
    }

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

    .video-container iframe {
        height: 300px;
    }

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

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

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

    .prep-steps {
        grid-template-columns: 1fr;
    }

    .product-details {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .small-video-container {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
        width: 200px;
        height: 360px;
        overflow: hidden;
    }

    /* Product pages main content for mobile */
    body.pink-matcha main,
    body.cold-brew main,
    body.valenio main {
        padding: 100px 15px 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: clamp(3rem, 10vw, 8rem);
    }

    .hero .tagline {
        font-size: clamp(1.2rem, 4vw, 2.5rem);
    }

    main {
        padding: 10px;
        overflow-x: hidden;
    }

    .hero {
        margin: 0 -10px 30px -10px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .contact-section {
        margin: 0 -10px;
        padding: 2rem 1rem;
    }

    footer {
        margin: 30px -10px 0 -10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .coffee-cup-placeholder {
        width: 200px;
        height: 260px;
    }

    /* Product page specific 480px styles */
    .product-image-large,
    body.pink-matcha .product-image-large,
    body.cold-brew .product-image-large,
    body.valenio .product-image-large {
        width: 250px;
        height: 250px;
        font-size: 1.2rem;
    }

    .small-video-container {
        width: 168px;
        height: 290px;
    }

    .benefits-section {
        padding: 2rem 1rem;
    }

    .preparation-section {
        padding: 2rem 1rem;
    }

    .process-section {
        padding: 2rem 1rem;
    }

    .video-container iframe {
        height: 250px;
    }

    .video-section {
        padding: 2rem 1rem;
    }

    .expertise-section {
        padding: 2rem 1rem;
    }
}

/* Fix very small screens (320px and below) */
@media screen and (max-width: 320px) {
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 6rem);
    }

    .hero .tagline {
        font-size: clamp(1rem, 3vw, 2rem);
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }

    .logo {
        font-size: 1.5rem;
    }

    .site-header {
        padding: 0.5rem;
    }

    main {
        padding: 5px;
    }

    .hero {
        margin: 0 -5px 20px -5px;
    }

    .contact-section {
        margin: 0 -5px;
        padding: 1.5rem 0.5rem;
    }

    footer {
        margin: 20px -5px 0 -5px;
        padding: 2rem 1rem 1rem 1rem;
    }
}