/* Base Styles */
:root {
    --primary-color: #2c8558;
    --primary-dark: #1e6b45;
    --primary-light: #54aa7c;
    --secondary-color: #4d6f97;
    --secondary-dark: #3a5981;
    --secondary-light: #7291b5;
    --accent-color: #f9c74f;
    --text-color: #333333;
    --text-light: #666666;
    --text-dark: #1a1a1a;
    --bg-color: #ffffff;
    --bg-light: #f7f9fc;
    --bg-dark: #e5e9f0;
    --border-color: #dbe1e8;
    --success-color: #43a047;
    --error-color: #d32f2f;
    --warning-color: #ffa000;
    --info-color: #1976d2;
    --font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --heading-font: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
    --border-radius: 6px;
    --container-width: 1200px;
    --header-height: 80px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

button {
    cursor: pointer;
    font-family: var(--font-family);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after,
nav ul li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

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

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

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(to right, rgba(44, 133, 88, 0.9), rgba(77, 111, 151, 0.9)), url('https://source.unsplash.com/random/1600x900/?nature,city');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Today in History Section */
.today-in-history {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.today-in-history h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.history-content p {
    margin-bottom: 1rem;
    text-align: left;
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.advantage-item h3 {
    margin-bottom: 1rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-banner {
    background-color: var(--primary-light);
    color: white;
    text-align: center;
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.cta-banner h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

/* About Products Section */
.about-products {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-products p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: justify;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
}

.product-card p {
    padding: 0 1.5rem;
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-actions {
    padding: 1.5rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background-color: var(--primary-dark);
}

.btn-view {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.btn-view:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-buy-now {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    transition: var(--transition);
    margin-left: 1rem;
}

.btn-buy-now:hover {
    background-color: var(--secondary-dark);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
}

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

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    margin-top: 1.5rem;
}

.social-icons a {
    color: white;
    margin-right: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    z-index: 1000;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 900px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

.btn-cookie-customize,
.btn-cookie-decline {
    background-color: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-cookie-customize:hover,
.btn-cookie-decline:hover {
    background-color: var(--bg-light);
}

.cookie-policy {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    transform: translateX(200%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Product Details Page */
.product-details {
    padding: 5rem 0;
}

.product-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

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

.product-content h1 {
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.product-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.product-price .tax-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-short-description {
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.quantity input {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.product-description {
    margin-bottom: 4rem;
}

.product-description h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.product-additional-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

/* Related Products */
.related-products {
    padding: 3rem 0 5rem;
    background-color: var(--bg-light);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* About Page */
.page-header {
    background: linear-gradient(to right, rgba(44, 133, 88, 0.9), rgba(77, 111, 151, 0.9)), url('https://source.unsplash.com/random/1600x400/?sustainability,finance');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 5rem 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.certifications {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.team {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.team h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

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

.team-member .social-icons {
    justify-content: center;
    margin: 1.5rem 0;
}

.about-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-cta h2 {
    margin-bottom: 1.5rem;
}

.about-cta p {
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

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

.contact-info-container {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.social-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.social-container h3 {
    margin-bottom: 1.5rem;
}

.social-container .social-icons {
    justify-content: center;
}

.contact-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
}

.contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
}

.contact-form .checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.3rem;
}

.faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

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

/* Cart Page */
.cart-content {
    padding: 5rem 0;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
}

.cart-empty svg {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cart-empty h2 {
    margin-bottom: 1rem;
}

.cart-empty p {
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table th {
    text-align: left;
    padding: 1rem;
    background-color: var(--bg-light);
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 1rem;
}

.cart-product-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

.cart-quantity input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.cart-remove {
    color: var(--error-color);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.cart-totals {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    min-width: 300px;
}

.cart-totals h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.total-final {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommended-products {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.recommended-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.recommended-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Checkout Page */
.checkout-content {
    padding: 5rem 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.checkout-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.checkout-form-container h2 {
    margin-bottom: 2rem;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

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

.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
}

.checkout-form .notes-group {
    margin-top: 2rem;
}

.checkout-form .checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkout-form .checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.3rem;
}

.btn-order {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.order-summary {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    max-height: calc(100vh - var(--header-height) - 4rem);
    overflow-y: auto;
}

.order-summary h2 {
    margin-bottom: 2rem;
}

.checkout-empty {
    text-align: center;
}

.checkout-empty p {
    margin-bottom: 1.5rem;
}

.order-products {
    margin-bottom: 2rem;
}

.order-products h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.order-products ul {
    list-style: none;
    margin: 0;
}

.order-products li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-product-info {
    flex: 1;
}

.order-product-info h4 {
    margin-bottom: 0.25rem;
}

.order-product-quantity {
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-product-price {
    font-weight: bold;
}

.order-security-notice {
    display: flex;
    align-items: center;
    background-color: rgba(25, 118, 210, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.security-icon {
    color: var(--info-color);
    margin-right: 1rem;
}

.order-security-notice p {
    margin: 0;
    font-size: 0.9rem;
}

/* Success Page */
.success-content {
    padding: 5rem 0;
}

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

.success-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-message h1 {
    margin-bottom: 1.5rem;
}

.success-message p {
    margin-bottom: 1rem;
}

.success-details {
    margin-bottom: 2.5rem;
}

.success-impact {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2.5rem;
    text-align: left;
}

.success-impact h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.success-next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.success-next-steps h2 {
    margin-bottom: 1.5rem;
}

.success-next-steps ul {
    margin-left: 1.5rem;
}

.success-next-steps li {
    margin-bottom: 0.75rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
        max-height: none;
    }
}

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

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

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .advantages-grid,
    .product-features,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .cart-table {
        display: block;
        overflow-x: auto;
    }

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

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        padding: 1rem;
    }

    header {
        height: auto;
        position: static;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.5rem;
    }

    .cart-summary {
        flex-direction: column;
    }

    .success-message {
        padding: 2rem 1.5rem;
    }
}

/* Typewriter effect */
#typewriter {
    border-right: 0.1em solid;
    animation: blink 1s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto;
    letter-spacing: 0.15em;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: white; }
}
