/* Global Styles */
:root {
    --primary-color: #173a5e;
    --secondary-color: #005e62;
    --accent-color: #d6a86e;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --success-color: #2e7d32;
    --error-color: #d32f2f;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #0f2a47;
    color: var(--light-text);
}

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

.btn-secondary:hover {
    background-color: #004a4d;
    color: var(--light-text);
}

.btn-view {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.btn-add-to-cart {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-add-to-cart:hover {
    background-color: #0f2a47;
}

.btn-buy-now {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-buy-now:hover {
    background-color: #004a4d;
}

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

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

.logo img {
    max-height: 60px;
}

nav ul {
    display: flex;
    gap: 25px;
}

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

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

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

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

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(23, 58, 94, 0.8), rgba(0, 94, 98, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card .icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

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

.stat h4 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.cta {
    text-align: center;
    margin-top: 30px;
}

/* About Products Section */
.about-products {
    padding: 80px 0;
    background-color: #fff;
}

.about-products h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.product-info {
    max-width: 800px;
    margin: 0 auto;
}

.product-info h3 {
    margin-top: 30px;
    color: var(--secondary-color);
}

.certification {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.certification h4 {
    margin-bottom: 15px;
}

.certification ul {
    list-style: disc;
    margin-left: 20px;
}

.certification ul li {
    margin-bottom: 5px;
}

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

.daily-tip h2 {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
}

.tip-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

/* Terminology Section */
.terminology {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

.term {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.term h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

.products h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.product-info {
    padding: 20px;
}

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

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.description {
    color: #666;
    margin-bottom: 15px;
    min-height: 50px;
}

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

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

.breadcrumb {
    margin-bottom: 30px;
    color: #666;
}

.breadcrumb a {
    color: #666;
}

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

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

.product-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.stars {
    color: #ffc107;
    margin-right: 5px;
}

.rating-count {
    color: #666;
}

.product-description {
    margin-bottom: 30px;
}

.product-description h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-description ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-description ul li {
    margin-bottom: 5px;
}

.product-availability {
    display: flex;
    align-items: center;
    color: var(--success-color);
    margin-top: 20px;
}

.product-availability svg {
    margin-right: 10px;
}

.product-actions {
    margin-top: 30px;
}

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

.quantity-selector label {
    margin-right: 15px;
}

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

.quantity-buttons button {
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.quantity-decrease {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-increase {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quantity-buttons input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.product-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    color: #666;
}

.meta-item svg {
    margin-right: 8px;
    color: var(--primary-color);
}

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

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

/* About Page */
.page-header {
    background: linear-gradient(rgba(23, 58, 94, 0.8), rgba(0, 94, 98, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

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

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

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text h2 {
    color: var(--secondary-color);
    margin-top: 30px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.values-list li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.achievements {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.achievement {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.achievement-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team {
    padding: 80px 0;
}

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

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

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

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

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

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

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

.team-member p:nth-child(3) {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.team-member .social-icons a {
    color: #666;
}

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

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.cta-section h2 {
    color: var(--light-text);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

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

.contact-info h2, .contact-form h2 {
    margin-bottom: 25px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item .icon {
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.social-connect {
    margin-top: 40px;
}

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

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

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

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

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: #fff;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group button {
    width: 100%;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

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

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

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

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

.empty-cart-icon {
    color: #ccc;
    margin-bottom: 20px;
}

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

.cart-empty p {
    margin-bottom: 30px;
    color: #666;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

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

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

.cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.cart-item-details h3 {
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 500;
}

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

.cart-quantity-buttons {
    display: flex;
}

.cart-quantity-buttons button {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-quantity-decrease {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.cart-quantity-increase {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.cart-quantity-buttons input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.cart-item-total {
    font-weight: 600;
}

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

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.cart-summary {
    width: 400px;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.cart-summary h3 {
    margin-bottom: 20px;
}

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

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

.checkout-btn {
    width: 100%;
    margin-top: 20px;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 15px;
}

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

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

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

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

.checkout-form h2, .order-summary h2 {
    margin-bottom: 25px;
}

.checkout-form h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.item-info h4 {
    margin-bottom: 5px;
}

.item-price {
    color: #666;
}

.item-total {
    font-weight: 600;
}

.summary-totals {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
}

.secure-checkout {
    margin-top: 30px;
    display: flex;
    align-items: center;
    color: var(--success-color);
}

.secure-icon {
    margin-right: 10px;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    text-align: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 25px;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.success-details {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: left;
}

.next-steps {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.next-steps ul {
    list-style: disc;
    margin-left: 20px;
}

.next-steps ul li {
    margin-bottom: 10px;
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.recommendations {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li a {
    color: #ccc;
}

.footer-links ul li a:hover {
    color: var(--light-text);
}

.footer-contact p {
    margin-bottom: 5px;
    color: #ccc;
}

.footer-contact .social-icons {
    margin-top: 20px;
}

.footer-contact .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.footer-contact .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
}

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

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

.btn-cookie.decline {
    background-color: #f5f5f5;
    color: #666;
}

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

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: var(--light-text);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s, fadeOut 0.3s 2.7s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-actions {
        justify-content: center;
    }
    
    .cart-summary {
        width: 100%;
    }
    
    .success-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .benefits-grid, .terms-grid, .product-grid, .achievements-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-content {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie {
        width: 100%;
        margin-bottom: 10px;
    }
}
