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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e7 100%);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 800;
    color: #ff6b35;
}

.nav-logo-image {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-image:hover {
    transform: scale(1.05);
}

.nav-logo-text {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.logo-text {
    color: #333;
}

.logo-accent {
    color: #ff6b35;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-cart {
    margin-right: 20px;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
}

.hero-banner-image {
    max-width: 300px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-banner-image:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 180px 0 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}


.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333;
}

.hero-title .highlight {
    color: #ff6b35;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-title .subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    border: 2px solid #ff6b35;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Showcase */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.product-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-container {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    transform: rotate(-8deg);
    transition: transform 0.3s ease;
}

.product-container:hover {
    transform: rotate(0deg) scale(1.05);
}

.product-image {
    width: 350px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.product-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ffb366);
    border-radius: 50px;
    opacity: 0.1;
    filter: blur(30px);
    z-index: -1;
}


/* Hero Background */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 179, 102, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-intro {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

/* About Story Section */
.about-story {
    margin-bottom: 50px;
}

.story-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

.story-content {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.story-content strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Mission Section */
.about-mission {
    background: rgba(255, 107, 53, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 50px;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.mission-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.mission-content {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    text-align: center;
}

.highlight-text {
    color: #ff6b35;
    font-weight: 700;
    display: block;
    margin: 15px 0;
}

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

.value-item {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.value-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.value-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Vision Section */
.about-vision {
    margin-bottom: 40px;
}

.vision-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.vision-content {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-promise {
    font-size: 20px;
    font-style: italic;
    color: #ff6b35;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

.about-mission {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.about-mission::before,
.about-mission::after {
    content: '';
    font-size: 40px;
    color: #ff6b35;
    font-family: serif;
    position: relative;
    top: 5px;
}

.about-values {
    font-size: 18px;
    font-weight: 500;
    color: #ff6b35;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.value-item {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    font-size: 14px;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.about-promise {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    font-style: italic;
}

.brand-highlight {
    margin-bottom: 30px;
}

.brand-text {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ffb366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    display: block;
}

.brand-slogan {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 3px solid #ff6b35;
    padding-top: 20px;
    margin-top: 20px;
    line-height: 1.2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e7 100%);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.feature-text .highlight {
    color: #ff6b35;
}

.feature-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.feature-list li i {
    color: #ff6b35;
    font-size: 18px;
}

.mandarin-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.mandarin-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mandarin-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    line-height: 1.5;
}

.mandarin-features li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.mandarin-features li:last-child {
    margin-bottom: 0;
}

.mandarin-features li i {
    color: #ff6b35;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.nutrition-facts {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.nutrition-facts h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.nutrient-value {
    font-weight: 600;
    color: #ff6b35;
}

/* Newsletter Section */
.newsletter {
    padding: 120px 0;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.subscribe-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.subscribe-form input::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 16px 32px;
    background: white;
    color: #ff6b35;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.privacy-note {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: white;
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #fff8f0;
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff6b35;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
    border-top: 2px solid #ff6b35; /* Geçici görünürlük testi için */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 60px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: #ff6b35;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b35;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.designer-credit {
    margin-top: 20px;
    margin-bottom: 0;
    opacity: 0.6;
    font-size: 12px;
}

.designer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.designer-link:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
    opacity: 1;
}

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

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

/* Products Page Styles */
.products-header {
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e7 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.products-header-content {
    position: relative;
    z-index: 2;
}

.products-title {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.products-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Products Description */
.products-description {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.description-content {
    background: rgba(255, 107, 53, 0.05);
    padding: 30px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.description-preview {
    margin-bottom: 20px;
}

.description-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.description-collapsible.active {
    opacity: 1;
    transform: translateY(0);
}

.description-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    text-align: left;
}

.description-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.description-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #ff6b35;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

/* Expand Button - Text Link Style */
.expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #ff6b35;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    border-radius: 8px;
    text-decoration: none;
}

.expand-btn:hover {
    color: #ff8c42;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.expand-btn.active {
    color: #ff8c42;
}

.expand-btn i {
    transition: transform 0.3s ease;
}

.expand-btn.active i {
    transform: rotate(180deg);
}

.btn-text {
    transition: all 0.3s ease;
}

.products-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border: 2px solid rgba(255, 107, 53, 0.2);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hidden Features - Temporarily Disabled */
.product-price,
.product-stock,
.add-to-cart-btn,
.quantity-selector,
.quantity-controls,
.cart-item-price,
.product-total-price,
.product-meta,
#product-stock,
.cart-btn,
.cart-modal,
.product-modal button[onclick*="addToCartFromModal"],
.product-modal .product-total {
    display: none !important;
}

/* Homepage Slider Styles */
.slider-container {
    position: relative;
    width: 350px;
    height: 500px;
    overflow: hidden;
    border-radius: 30px;
}

.slider-wrapper {
    display: flex;
    width: 1750px; /* 350px * 5 = 1750px */
    height: 500px;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.slider-btn:hover {
    background: rgba(255, 107, 53, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

.slider-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 107, 53, 1);
    border-color: rgba(255, 107, 53, 1);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.indicator:hover {
    background: rgba(255, 107, 53, 0.7);
}

/* Responsive Category Filter */
@media (max-width: 768px) {
    .category-filter {
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Responsive Product Description */
@media (max-width: 768px) {
    .products-description {
        margin-bottom: 30px;
    }

    .description-content {
        padding: 20px 25px;
    }

    .description-text {
        font-size: 16px;
    }

    .description-highlight {
        font-size: 18px;
        padding: 12px;
    }

    .expand-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Responsive Homepage Slider */
@media (max-width: 768px) {
    .slider-container {
        width: 280px;
        height: 400px;
    }

    .slider-wrapper {
        width: 1400px; /* 280px * 5 = 1400px */
        height: 400px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: -5px;
    }

    .next-btn {
        right: -5px;
    }
}

.products-section {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.quick-view-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #ff6b35;
    color: white;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-stock {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #ff6b35;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Modal Styles */
.cart-modal,
.product-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cart-modal-content,
.product-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

.cart-modal-header,
.product-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-modal-header h2,
.product-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f5f5f5;
    color: #333;
}

/* Cart Modal */
.cart-items {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px 30px;
}

.empty-cart {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-controls button:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.cart-item-price {
    font-weight: 700;
    color: #ff6b35;
}

.remove-item {
    background: none;
    border: none;
    color: #ff6b35;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

.cart-total {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.cart-actions {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
}

/* Product Modal */
.product-modal-content {
    max-width: 900px;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.05);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-image:hover {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 20px;
}

.stock {
    font-size: 14px;
    color: #2e7d32;
    background: #e8f5e8;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ff6b35;
    background: white;
    color: #ff6b35;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #ff6b35;
    color: white;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.product-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255, 107, 53, 0.1);
    }

    .nav-links.active .nav-link {
        margin: 10px 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }

    .nav-links.active .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-banner {
        top: 80px;
    }

    .hero-banner-image {
        max-width: 200px;
    }

    .product-image {
        height: 350px;
    }

    .nav-logo {
        gap: 10px;
    }

    .nav-logo-image {
        height: 50px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .feature-text h2,
    .newsletter-text h2 {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .mandarin-section {
        padding: 20px;
        margin-top: 25px;
    }

    .mandarin-features li {
        padding: 10px;
        margin-bottom: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .mandarin-features li i {
        align-self: center;
        font-size: 14px;
    }

    .about-intro {
        margin-bottom: 40px;
    }

    .story-title {
        font-size: 24px;
    }

    .story-content {
        font-size: 16px;
        text-align: left;
    }

    .about-mission {
        padding: 30px 20px;
    }

    .mission-title {
        font-size: 22px;
    }

    .mission-content {
        font-size: 18px;
    }

    .mission-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item {
        padding: 20px 15px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .value-content h4 {
        font-size: 18px;
    }

    .vision-title {
        font-size: 22px;
    }

    .vision-content {
        font-size: 16px;
    }

    .about-mission {
        font-size: 18px;
        padding: 0 20px;
    }

    .about-mission::before,
    .about-mission::after {
        content: '';
        font-size: 30px;
    }

    .about-values {
        font-size: 16px;
        padding: 0 20px;
    }

    .values-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .value-item {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .about-promise {
        font-size: 16px;
        padding: 0 20px;
    }

    .brand-text {
        font-size: 36px;
    }

    .brand-slogan {
        font-size: 20px;
        letter-spacing: 1px;
        padding-top: 15px;
    }

    .mandarin-section {
        padding: 15px;
        margin-top: 20px;
    }

    .mandarin-features li {
        padding: 8px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

/* Checkout Page Styles */
.checkout-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.checkout-header {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 30px;
    text-align: center;
}

.checkout-header h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
}

.checkout-header p {
    margin: 0;
    opacity: 0.9;
}

.checkout-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #ff6b35;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #ff6b35;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.credit-card-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #ff6b35;
}

.terms-checkbox label {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.terms-checkbox label a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.terms-checkbox label a:hover {
    text-decoration: underline;
}

/* Order Summary */
.order-summary {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary-header {
    background: #f8f9fa;
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
}

.order-summary-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.order-items {
    padding: 0 30px;
    max-height: 300px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.order-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.order-item-quantity {
    font-size: 12px;
    color: #666;
}

.order-item-price {
    font-weight: 700;
    color: #ff6b35;
    margin-left: auto;
}

.order-totals {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.total-row.final-total {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 2px solid #ff6b35;
}

.checkout-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 30px 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.security-badge i {
    color: #28a745;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.success-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-modal-content h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 28px;
}

.success-modal-content p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.success-actions .btn-primary,
.success-actions .btn-secondary {
    flex: 1;
    padding: 12px 20px;
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-form {
        padding: 30px 20px;
    }

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

    .order-summary {
        position: static;
    }

    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-banner {
        top: 60px;
    }

    .hero-banner-image {
        max-width: 150px;
    }

    .product-image {
        height: 280px;
    }

    .about-mission {
        font-size: 16px;
        padding: 0 15px;
    }

    .story-title {
        font-size: 20px;
    }

    .story-content {
        font-size: 15px;
    }

    .about-mission {
        padding: 25px 15px;
    }

    .mission-title {
        font-size: 20px;
    }

    .mission-content {
        font-size: 16px;
    }

    .mission-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-item {
        padding: 18px 12px;
    }

    .vision-title {
        font-size: 20px;
    }

    .about-mission::before,
    .about-mission::after {
        content: '';
        font-size: 25px;
    }

    .about-values {
        font-size: 14px;
        padding: 0 15px;
    }

    .value-item {
        padding: 10px 15px;
        font-size: 12px;
    }

    .about-promise {
        font-size: 14px;
        padding: 0 15px;
    }

    .brand-text {
        font-size: 32px;
    }

    .brand-slogan {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 350px;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-logo-image {
        height: 40px;
    }

    .about,
    .features,
    .newsletter,
    .contact {
        padding: 80px 0;
    }

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

    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
}
