* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --primary-dark: #0A0A0A;
    --secondary-dark: #1A1A1A;
    --card-bg: #252525;
    --text-light: #E4E4E4;
    --text-muted: #888;
    --accent-green: #00FF7F;
    --accent-blue: #4169E1;
    --accent-red: #FF3B3B;
}

body {
    font-family: 'Cairo', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0F1419 0%, #1A1A1A 50%, #0F1419 100%);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Premium */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

.navbar:hover {
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 36px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-box {
    position: relative;
}

#search-input {
    background: var(--card-bg);
    border: 2px solid transparent;
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--text-light);
    width: 150px;
    transition: all 0.3s;
}

#search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    width: 200px;
}

.cart-icon {
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    color: #000;
    padding: 8px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Hero Section - Ultra Premium */
.hero {
    margin-top: 70px;
    min-height: 600px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 90px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-secondary {
    color: var(--text-light);
    font-size: 70px;
}

.hero-subtitle {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 215, 0, 0.15);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 165, 0, 0.1);
    bottom: -150px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.1);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, #1A1A1A, #252525);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
}

.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Features */
.features {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #252525, #1A1A1A);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: #0F1419;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #252525;
    color: var(--text-light);
    border: 2px solid transparent;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    color: #000;
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.product-card {
    background: linear-gradient(135deg, #252525, #2A2A2A);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    border-color: var(--primary-gold);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-green), #00CC66);
    color: #000;
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 13px;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.product-icon {
    font-size: 80px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.product-icon-text {
    font-size: 24px;
    color: var(--primary-gold);
    font-weight: bold;
    opacity: 0.7;
}

.product-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.1));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.product-info {
    padding: 30px;
}

.product-category {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.product-name {
    color: var(--primary-gold);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-desc {
    color: #AAA;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 55px;
}

.product-weight {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 14px;
}

.current-price {
    color: var(--primary-gold);
    font-size: 30px;
    font-weight: 900;
}

.savings {
    color: var(--accent-green);
    font-size: 13px;
    margin-top: 5px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: rgba(15, 20, 25, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
    height: 300px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
    padding: 30px;
    color: var(--primary-gold);
    font-size: 24px;
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #1A1A1A;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.about-intro {
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 25px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-cup {
    font-size: 200px;
    animation: float 6s ease-in-out infinite;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #0F1419;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #252525, #2A2A2A);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.testimonial-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #1A1A1A;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-item {
    background: linear-gradient(135deg, #252525, #2A2A2A);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.contact-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-item h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 16px;
}

/* Footer */
.footer {
    background: #0A0A0A;
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-gold);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 5px 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, #252525, #2A2A2A);
    margin: 3% auto;
    border-radius: 25px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    animation: slideDown 0.3s;
}

.modal-header {
    background: linear-gradient(135deg, #1A1A1A, #252525);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.modal-header h2 {
    color: var(--primary-gold);
    font-size: 28px;
}

.close {
    color: var(--text-muted);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 40px;
    max-height: 500px;
    overflow-y: auto;
}

.modal-footer {
    background: linear-gradient(135deg, #1A1A1A, #252525);
    padding: 30px 40px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.cart-total {
    text-align: center;
    margin-bottom: 25px;
}

.cart-total h3 {
    color: var(--primary-gold);
    font-size: 32px;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-green), #00CC66);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-checkout:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,255,127,0.5);
}

/* Cart Item */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.cart-item-info h4 {
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-size: 18px;
}

.cart-item-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.cart-item-price {
    font-size: 24px;
    color: var(--primary-gold);
    font-weight: 900;
}

.remove-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

/* Responsive - Mobile First */
@media (max-width: 1024px) {
    .hero-title { font-size: 70px; }
    .hero-title-secondary { font-size: 60px; }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu { 
        display: none; 
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .search-box {
        display: none;
    }
    
    .logo-icon {
        font-size: 28px;
    }
    
    .logo-main {
        font-size: 22px;
    }
    
    /* Hero */
    .hero {
        margin-top: 60px;
        padding: 60px 0;
        min-height: 500px;
    }
    
    .hero-title { 
        font-size: 48px;
        line-height: 1.2;
    }
    
    .hero-title-secondary { 
        font-size: 40px;
    }
    
    .hero-subtitle { 
        font-size: 20px;
    }
    
    .hero-description { 
        font-size: 16px;
    }
    
    .hero-buttons { 
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary { 
        width: 100%;
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        font-size: 48px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    /* Products */
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .category-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .products-grid { 
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-icon {
        font-size: 60px;
    }
    
    .product-icon-text {
        font-size: 18px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .product-desc {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 26px;
    }
    
    .add-to-cart-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* About */
    .about-content { 
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 36px;
    }
    
    .about-intro {
        font-size: 18px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .coffee-cup {
        font-size: 120px;
    }
    
    /* Stats */
    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .contact-icon {
        font-size: 40px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 22px;
    }
    
    .close {
        font-size: 32px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .cart-item-price {
        font-size: 20px;
        margin: 10px 0;
    }
    
    .cart-total h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title-secondary {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-bar .container {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .tab-btn {
        padding: 8px 15px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .cart-icon {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .add-to-cart-btn {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}
