/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e67e22;
    --light-color: #f9f9f9;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --light-text: #666;
    --border-color: #ddd;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --max-width: 1200px;
    --header-height: 80px;
    --footer-bg: #2c3e50;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    letter-spacing: 0.5px;
}

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

.primary-btn:hover {
    background-color: #1e2b3a;
    color: white;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cta-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
}

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

.view-btn, .add-to-cart-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo-container {
    float: left;
}

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

nav {
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

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

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

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

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

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

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

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

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.advantage-icon {
    background-color: var(--secondary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

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

.stat-label {
    font-size: 1rem;
    color: var(--light-text);
}

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

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

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

.about-products p {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.quality-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.feature {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.feature h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

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

.product-image {
    height: 250px;
    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-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-description {
    color: var(--light-text);
    margin-bottom: 15px;
    height: 3em;
    overflow: hidden;
}

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

.product-actions {
    display: flex;
    justify-content: space-between;
}

/* Special Features Section */
.special-features {
    padding: 60px 0;
    text-align: center;
    background-color: white;
}

.special-features h2 {
    margin-bottom: 30px;
}

.feature-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.feature-btn:hover {
    background-color: #2980b9;
    color: white;
}

.btn-3d {
    display: inline-block;
    position: relative;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transform-style: preserve-3d;
    transform: perspective(600px) rotateX(0deg) rotateY(0deg);
    box-shadow: 0 6px 0 #d35400;
    transition: all 0.3s;
}

.btn-3d a {
    color: white;
    text-decoration: none;
}

.btn-3d:hover {
    transform: perspective(600px) rotateX(-10deg) rotateY(0deg) translateY(-5px);
    box-shadow: 0 10px 0 #d35400;
}

.btn-3d:active {
    transform: perspective(600px) rotateX(0deg) rotateY(0deg) translateY(4px);
    box-shadow: 0 2px 0 #d35400;
}

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

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

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column p {
    color: #ecf0f1;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

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

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

.footer-column address {
    font-style: normal;
    color: #ecf0f1;
    line-height: 1.7;
}

.footer-column address a {
    color: #ecf0f1;
}

.footer-column address a:hover {
    color: var(--accent-color);
}

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

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

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

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

.footer-bottom p {
    color: #ecf0f1;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

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

.cookie-more-info {
    font-size: 0.9rem;
}

.cookie-more-info a {
    color: var(--accent-color);
}

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

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

/* Product Details Page */
.product-details-section {
    padding: 60px 0;
}

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

.product-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

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

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

.product-availability {
    font-weight: 600;
    font-size: 0.9rem;
}

.in-stock {
    color: var(--success-color);
}

.product-price.large {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-description-detailed {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-features {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product-features h3 {
    margin-bottom: 15px;
}

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

.product-features li {
    margin-bottom: 8px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--border-color);
}

input[type="number"] {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 1px solid var(--border-color);
    margin: 0 5px;
}

.shipping-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

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

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--light-text);
    position: relative;
}

.tab-btn:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    color: var(--secondary-color);
}

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

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

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    text-align: left;
    width: 40%;
    color: var(--primary-color);
}

.care-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.care-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.care-icon span {
    margin-top: 5px;
    font-size: 0.9rem;
}

.related-products {
    margin-top: 60px;
}

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

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

.related-product-item {
    text-align: center;
    transition: var(--transition);
}

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

.related-product-item img {
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.related-product-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* About Page */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.about-hero h1, .about-hero p {
    color: white;
}

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

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

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

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.values-list li {
    display: flex;
    gap: 20px;
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

.team-member p:nth-child(4) {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

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

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

.certifications {
    padding: 80px 0;
}

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

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

.certification {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.certification:hover {
    background-color: white;
    box-shadow: var(--box-shadow);
}

.certification-icon {
    background-color: var(--secondary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.certification h3 {
    margin-bottom: 10px;
}

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

.cta-section h2, .cta-section p {
    color: white;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.contact-hero h1, .contact-hero p {
    color: white;
}

.contact-content {
    padding: 80px 0;
}

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

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

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.social-links a {
    color: var(--secondary-color);
    margin-right: 15px;
    transition: var(--transition);
}

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

.contact-form, .checkout-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    flex: 0 0 calc(50% - 10px);
}

.form-group.full-width {
    flex: 0 0 100%;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

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

.form-actions {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

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

.global-presence h2, .global-presence p {
    text-align: center;
}

.global-presence p {
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.region {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-item h3 {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-item h3:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
}

.faq-item.open h3:after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 10px;
}

.faq-item.open .faq-answer {
    display: block;
}

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

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

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

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

.cart-empty p {
    color: var(--light-text);
    margin-bottom: 30px;
}

.cart-items-container {
    margin-bottom: 40px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

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

.cart-table th {
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--light-color);
}

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

.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.cart-product-name {
    font-weight: 600;
}

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

.cart-quantity input {
    width: 60px;
    text-align: center;
}

.cart-remove {
    color: var(--error-color);
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    color: #c0392b;
}

.cart-summary {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

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

.cart-actions {
    margin: 30px 0;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 10px;
}

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

.cart-notes p {
    margin-bottom: 5px;
}

.featured-products {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

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

.featured-product {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
}

.featured-product:hover {
    transform: translateY(-5px);
}

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

.featured-product h3 {
    margin: 15px 0 5px;
    padding: 0 15px;
}

.featured-product .product-price {
    margin-bottom: 15px;
}

.featured-product .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

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

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

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

.checkout-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

#checkout-items-container {
    margin-bottom: 30px;
}

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

.checkout-item-image {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
}

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

.checkout-item-price, .checkout-item-quantity {
    font-size: 0.9rem;
    color: var(--light-text);
}

.summary-totals {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.security-info, .support-info {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--success-color);
}

.support-info p {
    margin-bottom: 0;
}

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

.success-message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

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

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

.confirmation-details {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

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

.recommended-product {
    text-align: center;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.recommended-product:hover {
    background-color: white;
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.recommended-product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.recommended-product h3 {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .product-details-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        justify-content: center;
    }
    
    .logo-container {
        float: none;
        text-align: center;
        margin-bottom: 15px;
    }
    
    header {
        padding: 10px 0;
    }
    
    nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
    
    .form-actions, .checkout-actions {
        flex-direction: column;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-menu li {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .cart-table, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
        display: block;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table tr {
        margin-bottom: 30px;
        border-bottom: 2px solid var(--border-color);
    }
    
    .cart-table td {
        border-bottom: none;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }
    
    .cart-table td:before {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 45%;
        white-space: nowrap;
        font-weight: 600;
    }
    
    .cart-table td:nth-of-type(1):before { content: "Product"; }
    .cart-table td:nth-of-type(2):before { content: "Price"; }
    .cart-table td:nth-of-type(3):before { content: "Quantity"; }
    .cart-table td:nth-of-type(4):before { content: "Total"; }
    .cart-table td:nth-of-type(5):before { content: "Actions"; }
    
    .cart-product {
        justify-content: flex-end;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
