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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 72px; /* Only for fixed header */
}

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

/* Header and Navigation */
header {
    background: #00704A;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo a:hover {
    color: #f4f4f4;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f4f4f4;
    text-decoration: underline;
}

.nav-menu a.active {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border-bottom: 1px solid rgba(0,112,74,0.1);
    border-top: 1px solid rgba(0,112,74,0.1);
    padding: 1.2rem 0;
    margin-top: 0;
    box-shadow: 0 2px 8px rgba(0,112,74,0.05);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 0.8rem;
    color: #00704A;
    font-weight: bold;
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: #00704A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.breadcrumb-item a:hover {
    background: rgba(0,112,74,0.1);
    color: #008852;
    text-decoration: underline;
    transform: translateY(-1px);
}

.breadcrumb-item.active span {
    color: #666;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: rgba(0,112,74,0.08);
    border-radius: 8px;
    border: 1px solid rgba(0,112,74,0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 200px 200px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    text-align: left;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cups {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: slideInRight 1s ease-out;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #00704A;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #00704A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Size Overview Section */
.size-overview {
    padding: 4rem 0;
    background: white;
}

.size-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00704A;
}

.size-overview > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.size-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.size-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.size-card.featured {
    border-color: #00704A;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fff8 100%);
    transform: scale(1.02);
}

.size-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.size-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    position: relative;
}

.cup-image {
    max-width: 80px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.size-card:hover .cup-image {
    transform: scale(1.1) rotate(3deg);
}

/* Size Icons - Legacy styles (now using SVG images instead) */
/*
.size-icon {
    width: 60px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    position: relative;
}

.size-icon.tall {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    height: 60px;
}

.size-icon.grande {
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    height: 70px;
}

.size-icon.venti {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    height: 85px;
}

.size-icon.trenta {
    background: linear-gradient(135deg, #9F7AEA 0%, #805AD5 100%);
    height: 95px;
}
*/

.size-card h3 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.size-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.size-card ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.size-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.size-card li:last-child {
    border-bottom: none;
}

.size-card li strong {
    color: #00704A;
    font-weight: 600;
}

.learn-more {
    display: inline-block;
    color: #00704A;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.learn-more:hover {
    border-bottom-color: #00704A;
}

/* Category Cards with Images */
.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.category-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.category-icon {
    max-width: 60px;
    height: auto;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.size-list {
    margin-bottom: 1.5rem;
}

.size-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.size-name {
    font-weight: 500;
    color: #333;
}

.size-oz {
    font-weight: bold;
    color: #00704A;
}

.category-link {
    display: inline-block;
    color: #00704A;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: transparent;
    border: 2px solid #00704A;
}

.category-link:hover {
    background: #00704A;
    color: white;
    transform: translateY(-2px);
}

/* Comparison Visual */
.comparison-visual {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.comparison-header h4 {
    text-align: center;
    color: #00704A;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.comparison-cups {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 2.5rem;
    margin-top: 2rem;
    padding: 1rem;
}

.cup-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
}

.cup-comparison .size-visual {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cup-comparison .cup-image {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.cup-comparison .cup-image:hover {
    transform: scale(1.1);
}

.cup-label {
    font-size: 0.85rem;
    color: #00704A;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin-top: 0.5rem;
    display: block;
    white-space: nowrap;
    overflow: visible;
}

@media (max-width: 768px) {
    .comparison-cups {
        gap: 1rem;
    }
    
    .cup-comparison .cup-image {
        width: 60px;
    }
    
    .cup-label {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-top: 0.4rem;
    }
}

@media (max-width: 480px) {
    .cup-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

.comparison-chart-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.comparison-chart-image:hover {
    transform: scale(1.02);
}

/* Drink Categories Section */
.drink-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.drink-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00704A;
}

.drink-categories > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card h3 {
    color: #00704A;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.size-list {
    margin-bottom: 1.5rem;
}

.size-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

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

.size-name {
    font-weight: 500;
    color: #333;
}

.size-oz {
    color: #00704A;
    font-weight: bold;
}

.category-link {
    display: block;
    text-align: center;
    color: #00704A;
    text-decoration: none;
    font-weight: bold;
    padding: 0.8rem;
    border: 2px solid #00704A;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #00704A;
    color: white;
}

/* Size Comparison Section */
.size-comparison-section {
    padding: 4rem 0;
    background: white;
}

.size-comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00704A;
}

.size-comparison-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-chart {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.chart-header h4 {
    text-align: center;
    color: #00704A;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 200px;
    gap: 1rem;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.bar {
    width: 40px;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.bar:hover {
    transform: scaleY(1.1);
}

.tall-bar {
    height: 60px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.grande-bar {
    height: 80px;
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
}

.venti-bar {
    height: 100px;
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
}

.venti-hot-bar {
    height: 100px;
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
}

.venti-cold-bar {
    height: 120px;
    background: linear-gradient(135deg, #3182CE 0%, #2B6CB0 100%);
}

.trenta-bar {
    height: 150px;
    background: linear-gradient(135deg, #9F7AEA 0%, #805AD5 100%);
}

.bar-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}

/* Size Facts Section */
.size-facts {
    padding: 4rem 0;
    background: #f8f9fa;
}

.size-facts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00704A;
}

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

.fact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-3px);
}

.fact-card h4 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.fact-card p {
    color: #333;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #2D3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #00704A;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
    color: #ccc;
}

/* Disclaimer Section Styles */
.disclaimer-section {
    background: #1A202C;
    border: 2px solid #E53E3E;
    border-radius: 8px;
    margin: 2rem 0;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.2);
}

.disclaimer-content h4 {
    color: #E53E3E;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #E53E3E;
    padding-bottom: 0.5rem;
}

.disclaimer-text {
    line-height: 1.8;
    font-size: 0.95rem;
}

.disclaimer-text p {
    margin-bottom: 1rem;
    color: #E2E8F0;
}

.disclaimer-text p strong {
    color: #FED7D7;
    font-weight: 600;
}

.disclaimer-text hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #4A5568;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom p strong {
    color: #E53E3E;
    font-weight: 600;
}

/* Responsive Design - Disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .disclaimer-content h4 {
        font-size: 1.2rem;
    }
    
    .disclaimer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-section {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .disclaimer-content h4 {
        font-size: 1.1rem;
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 120px; /* Reduced padding for mobile devices */
    }
    
    .disclaimer-banner {
        padding: 0.8rem 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .banner-text {
        font-size: 0.85rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .breadcrumb {
        padding: 1rem 0;
        box-shadow: 0 1px 6px rgba(0,112,74,0.08);
    }
    
    .breadcrumb-list {
        font-size: 0.9rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.6rem;
        font-size: 1rem;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active span {
        padding: 0.3rem 0.6rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sizes-grid,
    .categories-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-bars {
        flex-wrap: wrap;
        height: auto;
        gap: 1rem;
    }
    
    .bar-item {
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 100px; /* Further reduced padding for smaller screens */
    }
    
    .disclaimer-banner {
        padding: 0.6rem 0;
    }
    
    .banner-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        padding: 0.8rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active span {
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.4rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .size-overview,
    .drink-categories,
    .size-comparison-section,
    .size-facts {
        padding: 2rem 0;
    }
    
    .size-card,
    .category-card,
    .fact-card {
        padding: 1.5rem;
    }
}

/* Inner Pages Specific Styles */

/* Page Hero for Inner Pages */
.page-hero {
    background: linear-gradient(135deg, #00704A 0%, #008852 50%, #00A86B 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    line-height: 1.6;
}

/* Enhanced Size Overview Sections */
.size-overview-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.size-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00704A, transparent);
}

.size-overview-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #00704A;
    font-weight: 700;
    position: relative;
}

.size-overview-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00704A, #008852);
    border-radius: 2px;
}

.size-overview-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
    line-height: 1.7;
}

/* Enhanced Size Cards */
.size-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.size-spec-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,112,74,0.1);
    border: 1px solid rgba(0,112,74,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.size-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00704A, #008852);
}

.size-spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,112,74,0.15);
    border-color: #00704A;
}

.size-spec-card h3 {
    color: #00704A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.size-spec-card h3::before {
    content: '☕';
    font-size: 1.2rem;
}

.size-spec-card ul {
    list-style: none;
    padding: 0;
}

.size-spec-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,112,74,0.1);
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
}

.size-spec-card li:last-child {
    border-bottom: none;
}

.size-spec-card li strong {
    color: #00704A;
    font-weight: 600;
    min-width: 100px;
}

/* Enhanced Menu Sections */
.drinks-menu-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.drinks-menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(0,112,74,0.03)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
}

.menu-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.menu-category-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,112,74,0.08);
    border: 1px solid rgba(0,112,74,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-category-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,112,74,0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.menu-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,112,74,0.12);
}

.menu-category-card h3 {
    color: #00704A;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 3;
}

.menu-category-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00704A, #008852);
    border-radius: 1px;
}

/* Enhanced Drink Items */
.drinks-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.drink-showcase-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0,112,74,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.drink-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00704A, #008852, #00A86B);
}

.drink-showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,112,74,0.15);
}

.drink-showcase-card h4 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.drink-showcase-card p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Enhanced Drink Specifications */
.drink-specs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.drink-specs-tags .spec-tag {
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,112,74,0.2);
    transition: all 0.2s ease;
}

.drink-specs-tags .spec-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,112,74,0.3);
}

/* Enhanced Benefits and Highlights */
.drink-benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.drink-benefits-tags .benefit-tag {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff8 100%);
    color: #00704A;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0,112,74,0.3);
    font-weight: 500;
    transition: all 0.2s ease;
}

.drink-benefits-tags .benefit-tag:hover {
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    color: white;
    transform: translateY(-1px);
}

/* Enhanced Benefits Sections */
.benefits-showcase-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.benefits-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0,112,74,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0,168,107,0.03) 0%, transparent 50%);
}

.benefits-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.benefit-showcase-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0,112,74,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,112,74,0.08);
}

.benefit-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,112,74,0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.benefit-showcase-card:hover::before {
    transform: scale(1);
}

.benefit-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,112,74,0.15);
    border-color: #00704A;
}

.benefit-showcase-card h3 {
    color: #00704A;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.benefit-showcase-card p {
    position: relative;
    z-index: 2;
    line-height: 1.6;
    color: #333;
}

/* Enhanced Comparison Tables */
.comparison-showcase-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-showcase-table {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,112,74,0.1);
    border: 1px solid rgba(0,112,74,0.1);
    overflow: hidden;
}

.comparison-showcase-table .table-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-showcase-table .table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,112,74,0.1);
    align-items: center;
    transition: background-color 0.2s ease;
}

.comparison-showcase-table .table-row:last-child {
    border-bottom: none;
}

.comparison-showcase-table .table-row:hover {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.comparison-showcase-table .table-row.highlighted {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff8 100%);
    font-weight: bold;
    border-left: 4px solid #00704A;
    margin-left: -4px;
}

/* Enhanced Value Metrics */
.value-showcase-metric {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,112,74,0.08);
}

.value-showcase-metric h3 {
    color: #00704A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.value-showcase-metric .metric-visual {
    margin: 1.5rem 0;
    position: relative;
}

.value-showcase-metric .metric-bar {
    height: 40px;
    background: linear-gradient(135deg, #00704A 0%, #008852 50%, #00A86B 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,112,74,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-showcase-metric .metric-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.value-showcase-metric .metric-bar:hover::before {
    left: 100%;
}

.value-showcase-metric .metric-bar:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,112,74,0.3);
}

/* Enhanced Caffeine Chart */
.caffeine-showcase-chart {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,112,74,0.1);
    border: 1px solid rgba(0,112,74,0.1);
}

.caffeine-showcase-chart .chart-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid rgba(0,112,74,0.1);
    transition: all 0.3s ease;
}

.caffeine-showcase-chart .chart-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,112,74,0.1);
}

.caffeine-showcase-chart .chart-item h4 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.caffeine-showcase-chart .caffeine-bar {
    height: 35px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    box-shadow: 0 4px 12px rgba(139,69,19,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.caffeine-showcase-chart .caffeine-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
}

.caffeine-showcase-chart .caffeine-bar:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(139,69,19,0.3);
}

/* Enhanced Size Visual Comparison */
.size-visual-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,112,74,0.08);
}

.size-visual-showcase-item {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.size-visual-showcase-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.size-visual-showcase-item .cup-visual {
    width: 80px;
    margin: 0 auto 1rem;
    border-radius: 15px 15px 40px 40px;
    background: linear-gradient(135deg, #00704A 0%, #008852 50%, #00A86B 100%);
    box-shadow: 0 8px 20px rgba(0,112,74,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.size-visual-showcase-item .cup-visual::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 20%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 50%;
}

.size-visual-showcase-item .tall-cup {
    height: 80px;
}

.size-visual-showcase-item .grande-cup {
    height: 100px;
}

.size-visual-showcase-item .venti-cup {
    height: 120px;
}

.size-visual-showcase-item .trenta-cup {
    height: 140px;
}

.size-visual-showcase-item.featured .cup-visual {
    background: linear-gradient(135deg, #9F7AEA 0%, #805AD5 50%, #B794F6 100%);
    box-shadow: 0 8px 25px rgba(159, 122, 234, 0.3);
}

.size-visual-showcase-item h4 {
    color: #00704A;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.size-visual-showcase-item .size-info {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Enhanced Limitations and Special Sections */
.limitations-showcase-section {
    padding: 4rem 0;
    background: white;
}

.limitation-showcase-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 8px 25px rgba(255,107,107,0.1);
    transition: all 0.3s ease;
}

.recommendation-showcase-card {
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    border-left-color: #00704A;
    box-shadow: 0 8px 25px rgba(0,112,74,0.1);
    transition: all 0.3s ease;
}

.limitation-showcase-card:hover,
.recommendation-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,112,74,0.15);
}

.limitation-showcase-card h4,
.recommendation-showcase-card h3 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.limitation-showcase-card p,
.recommendation-showcase-card p {
    color: #333;
    line-height: 1.6;
}

/* Enhanced Status Styling */
.availability-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.status-not-available {
    color: #ff6b6b;
    font-weight: 600;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255,107,107,0.3);
}

.status-cold-only {
    color: #3182CE;
    font-weight: 600;
    background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(49,130,206,0.3);
}

.status-same {
    color: #00704A;
    font-weight: 600;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(0,112,74,0.3);
}

.status-difference {
    color: #9F7AEA;
    font-weight: 600;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(159,122,234,0.3);
}

/* Enhanced Featured Cards */
.featured-showcase {
    border: 2px solid #00704A;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fff8 50%, #e8f5e8 100%);
    position: relative;
    box-shadow: 0 15px 35px rgba(0,112,74,0.15);
}

.featured-showcase::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,112,74,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.special-showcase {
    border: 2px solid #9F7AEA;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
    box-shadow: 0 15px 35px rgba(159,122,234,0.15);
}

/* Responsive Design for Inner Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .drinks-showcase-grid,
    .menu-categories-grid,
    .benefits-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-showcase-table .table-header,
    .comparison-showcase-table .table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .size-visual-showcase {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .drink-specs-tags,
    .drink-benefits-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .size-overview-section,
    .drinks-menu-section,
    .benefits-showcase-section,
    .comparison-showcase-section {
        padding: 2rem 0;
    }
    
    .size-spec-card,
    .menu-category-card,
    .drink-showcase-card,
    .benefit-showcase-card {
        padding: 1.5rem;
    }
    
    .size-visual-showcase-item .cup-visual {
        width: 60px;
    }
    
    .size-visual-showcase-item .tall-cup {
        height: 60px;
    }
    
    .size-visual-showcase-item .grande-cup {
        height: 75px;
    }
    
    .size-visual-showcase-item .venti-cup {
        height: 90px;
    }
    
    .size-visual-showcase-item .trenta-cup {
        height: 105px;
    }
}

/* Facts Tabs Styling */
.facts-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.fact-tab {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.fact-tab:hover {
    background: rgba(0,112,74,0.05);
    color: #00704A;
    transform: translateY(-2px);
}

.fact-tab.active {
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    color: white;
    border-bottom: 3px solid #00704A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,112,74,0.2);
}

.fact-tab.active::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00704A, #008852);
    border-radius: 2px;
}

.fact-content {
    background: white;
    border-radius: 0 12px 12px 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,112,74,0.1);
    border: 1px solid rgba(0,112,74,0.1);
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: #00704A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 0.5rem;
}

.tab-pane p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Comparison Controls Styling */
.comparison-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    font-weight: 600;
    color: #00704A;
    font-size: 0.9rem;
}

.control-group select,
.control-group input {
    padding: 0.8rem;
    border: 2px solid #e8f5e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.control-group select:focus,
.control-group input:focus {
    outline: none;
    border-color: #00704A;
    box-shadow: 0 0 0 3px rgba(0,112,74,0.1);
}

.control-group select:hover,
.control-group input:hover {
    border-color: #008852;
}

/* Value Indicators */
.value-indicator {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.value-indicator.best-value {
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    color: white;
    animation: pulse 2s infinite;
}

/* Size Visuals */
.size-visual {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.8rem;
}

.tall-visual {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.grande-visual {
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
}

.venti-visual {
    background: linear-gradient(135deg, #2F4F4F 0%, #708090 100%);
}

.trenta-visual {
    background: linear-gradient(135deg, #4B0082 0%, #663399 100%);
}

/* Best Value Recommendation */
.best-value-recommendation {
    margin-top: 2rem;
    text-align: center;
}

.best-value-recommendation .category-card {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #00704A;
    position: relative;
    overflow: hidden;
}

.best-value-recommendation .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.best-value-recommendation .category-card:hover::before {
    left: 100%;
}

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

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

/* Responsive Design for Tabs */
@media (max-width: 768px) {
    .facts-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .fact-tab {
        border-radius: 8px;
        margin-bottom: 0.25rem;
    }
    
    .fact-tab.active {
        border-radius: 8px;
    }
    
    .fact-content {
        border-radius: 12px;
        padding: 1.5rem;
    }
    
    .comparison-controls {
        gap: 0.75rem;
    }
    
    .control-group select,
    .control-group input {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .fact-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .fact-content {
        padding: 1rem;
    }
    
    .tab-pane h3 {
        font-size: 1.25rem;
    }
    
    .size-visual {
        width: 50px;
        height: 50px;
    }
}

/* Additional styles for specialty drink pages */
.caffeine-guide {
    padding: 4rem 0;
    background: #f8f9fa;
}

.caffeine-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00704A;
}

.caffeine-comparison {
    max-width: 800px;
    margin: 0 auto;
}

.caffeine-chart h4 {
    text-align: center;
    color: #00704A;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.caffeine-bar {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.size-label {
    width: 120px;
    font-weight: bold;
    color: #333;
}

.bar-container {
    flex: 1;
    position: relative;
    height: 30px;
    background: #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 1rem;
}

.caffeine-level {
    height: 100%;
    background: linear-gradient(135deg, #00704A 0%, #008852 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.caffeine-amount {
    font-weight: bold;
    color: #00704A;
    width: 80px;
    text-align: right;
}

.caffeine-free-benefits {
    padding: 4rem 0;
    background: white;
}

.caffeine-free-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00704A;
}

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

.benefit-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-card h4 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #333;
    line-height: 1.6;
}

.customization-options {
    padding: 4rem 0;
    background: #f8f9fa;
}

.customization-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00704A;
}

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

.custom-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-3px);
}

.custom-card h4 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.custom-card ul {
    list-style: none;
    padding: 0;
}

.custom-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.custom-card li:last-child {
    border-bottom: none;
}

.seasonal-calendar {
    padding: 4rem 0;
    background: white;
}

.seasonal-calendar h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00704A;
}

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

.season-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: translateY(-3px);
}

.season-card h4 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.season-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.season-card li {
    padding: 0.3rem 0;
    color: #333;
}

.season-note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.seasonal-tips {
    padding: 4rem 0;
    background: #f8f9fa;
}

.seasonal-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00704A;
}

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

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
}

.tip-card h4 {
    color: #00704A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-card p {
    color: #333;
    line-height: 1.6;
}

.availability-notice {
    padding: 4rem 0;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
}

.availability-notice h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #856404;
}

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

.notice-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #856404;
}

.notice-content ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.notice-content li {
    margin-bottom: 0.5rem;
    color: #856404;
}

.availability-alert {
    padding: 4rem 0;
    background: #d1ecf1;
    border-top: 3px solid #17a2b8;
}

.availability-alert h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0c5460;
}

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

.alert-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #0c5460;
}

.alert-tips ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.alert-tips li {
    margin-bottom: 0.5rem;
    color: #0c5460;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .caffeine-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .size-label {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .bar-container {
        margin: 0.5rem 0;
    }
    
    .caffeine-amount {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .benefits-grid,
    .customization-grid,
    .calendar-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Disclaimer Banner Styles */
.disclaimer-banner {
    background: linear-gradient(135deg, #FED7D7 0%, #FEB2B2 100%);
    border-bottom: 3px solid #E53E3E;
    padding: 1rem 0;
    position: relative; /* Changed from fixed to relative */
    box-shadow: 0 2px 10px rgba(229, 62, 62, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.banner-text {
    color: #742A2A;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.banner-text strong {
    color: #E53E3E;
    font-weight: 600;
}

/* Caffeine Comparison Image */
.caffeine-comparison-image {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.comparison-chart {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.comparison-chart:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .caffeine-comparison-image {
        margin: 1.5rem 0;
    }
    
    .comparison-chart {
        max-width: 100%;
        height: auto;
    }
}

/* Chart Bars - Backup display */
.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 200px;
    gap: 1rem;
}
