/* Base Styles */
:root {
    --primary-color: #FF4D00;
    --primary-hover: #FF6A33;
    --secondary-color: #1F2A44;
    --tertiary-color: #101725;
    --accent-color: #FFC107;
    --background-color: #0A0F17;
    --card-background: #1A1F2B;
    --text-color: #FFFFFF;
    --text-secondary: #ADB5BD;
    --text-muted: #6C757D;
    --border-color: #2C3E50;
    --success-color: #28A745;
    --danger-color: #DC3545;
    --warning-color: #FFC107;
    --info-color: #17A2B8;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

button, .btn {
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 60px 0;
}

/* Header Styles */
header {
    background-color: var(--tertiary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.cart-link {
    display: flex;
    align-items: center;
}

.cart-count {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits {
    background-color: var(--secondary-color);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.benefit-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 77, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card .icon svg {
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 0 15px;
}

.stat span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.cta {
    text-align: center;
}

/* Product Info Section */
.product-info {
    background-color: var(--tertiary-color);
    padding: 80px 0;
}

.product-info h2 {
    text-align: center;
    margin-bottom: 40px;
}

.product-info p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    text-align: center;
}

.quality-guarantee, .history {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    box-shadow: var(--box-shadow);
}

.quality-guarantee h3, .history h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

/* Daily Tip Section */
.daily-tip {
    background-color: var(--secondary-color);
    padding: 40px 0;
}

.daily-tip h2 {
    text-align: center;
    margin-bottom: 20px;
}

.tip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-background);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.tip-content svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.tip-content p {
    margin: 0;
    font-style: italic;
}

/* Glossary Section */
.glossary {
    background-color: var(--tertiary-color);
    padding: 60px 0;
}

.glossary h2 {
    text-align: center;
    margin-bottom: 40px;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.glossary-item {
    background-color: var(--card-background);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.glossary-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.glossary-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Footer Styles */
footer {
    background-color: var(--tertiary-color);
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p, .footer-col address p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--card-background);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 20px;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.cookie-accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-settings {
    background-color: var(--secondary-color);
    color: white;
}

.cookie-decline {
    background-color: var(--tertiary-color);
    color: white;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification p {
    margin: 0;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

.breadcrumbs {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-image-large {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info-detail h1 {
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.product-meta p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.product-price {
    margin-bottom: 25px;
}

.product-price span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-description h3,
.product-features h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.product-features {
    margin: 25px 0;
}

.product-features ul {
    list-style: disc;
    padding-left: 20px;
}

.product-features ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.product-features ul li strong {
    color: var(--text-color);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity {
    display: flex;
    align-items: center;
}

.quantity label {
    margin-right: 10px;
}

.quantity select {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 8px;
    border-radius: var(--border-radius);
}

.product-guarantee {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-item svg {
    color: var(--success-color);
}

/* Product Details Tabs */
.product-details-tabs {
    margin-bottom: 60px;
}

.tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--text-color);
}

.tab-btn.active:after {
    width: 100%;
}

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

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

.tab-pane h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Related Products */
.related-products {
    margin-top: 60px;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.related-item {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-item h3 {
    font-size: 1rem;
    padding: 15px 15px 5px;
    margin-bottom: 5px;
}

.related-item .price {
    padding: 0 15px 15px;
    font-size: 1rem;
}

/* About Page Styles */
.page-header {
    background-color: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.mission-values {
    background-color: var(--tertiary-color);
    padding: 80px 0;
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.value-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 77, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card .icon svg {
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-statement h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-statement p {
    margin: 0;
}

.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 10px;
}

.team-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 5px;
    margin-bottom: 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--tertiary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

.testimonials {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial .quote {
    margin-bottom: 20px;
}

.testimonial .quote svg {
    color: var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.testimonial-author .name {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author .title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Page Styles */
.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    background-color: var(--card-background);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 77, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method .icon svg {
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.social-connect h3 {
    margin-bottom: 10px;
}

.social-connect p {
    margin-bottom: 20px;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form > p {
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: var(--font-primary);
}

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.faq {
    background-color: var(--tertiary-color);
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--card-background);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
}

/* Cart Page Styles */
.cart-content {
    padding: 60px 0;
}

.cart-empty {
    text-align: center;
    padding: 60px 0;
}

.cart-empty svg {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 15px;
}

.cart-empty p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items h2 {
    margin-bottom: 30px;
}

.cart-list {
    display: grid;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 20px;
    background-color: var(--card-background);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

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

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--tertiary-color);
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    background-color: var(--card-background);
    color: var(--text-color);
    margin: 0 5px;
}

.cart-item-subtotal {
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
}

.cart-summary {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    margin-bottom: 30px;
}

.summary-items {
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.cart-actions {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.secure-checkout {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.secure-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.secure-icons svg {
    color: var(--success-color);
}

.secure-checkout p {
    font-weight: 600;
    margin-bottom: 5px;
}

.secure-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.you-may-like {
    margin-top: 60px;
}

.you-may-like h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Checkout Page Styles */
.checkout-content {
    padding: 60px 0;
}

.checkout-empty {
    text-align: center;
    padding: 60px 0;
}

.checkout-empty svg {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.checkout-empty h2 {
    margin-bottom: 15px;
}

.checkout-empty p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.checkout-form {
    padding: 30px;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.checkout-form h2 {
    margin-bottom: 30px;
}

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

.checkout-form small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
}

.order-items {
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.order-item-meta {
    display: flex;
    justify-content: space-between;
}

.order-item-meta p {
    margin: 0;
    font-size: 0.9rem;
}

.item-quantity {
    color: var(--text-secondary);
}

.guarantee {
    margin-top: 30px;
}

.guarantee h3 {
    margin-bottom: 20px;
}

.guarantee ul {
    list-style: none;
}

.guarantee ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.guarantee ul li svg {
    color: var(--success-color);
    flex-shrink: 0;
}

/* Success Page Styles */
.success-content {
    padding: 60px 0;
}

.success-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    background-color: var(--card-background);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon svg {
    color: var(--success-color);
}

.success-message h1 {
    margin-bottom: 20px;
}

.success-message p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-details {
    background-color: var(--tertiary-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.success-details p:last-child {
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.what-next {
    margin-bottom: 60px;
}

.what-next h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--card-background);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    margin: 0;
    color: var(--text-secondary);
}

.recommendations {
    margin-top: 60px;
}

.recommendations h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .product-layout {
        grid-template-columns: 1fr;
    }

    .cart-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .checkout-summary {
        position: static;
    }

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

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cart-item-details,
    .cart-item-quantity,
    .cart-item-subtotal {
        text-align: center;
    }

    .cart-item-remove {
        margin: 0 auto;
    }

    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .benefits-grid,
    .product-grid,
    .values-grid,
    .team-grid,
    .related-grid,
    .faq-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat {
        width: 100%;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }
}
