:root {
    --primary-color: #2563eb;
    --primary-color-dark: #1d4ed8;
    --primary-color-light: #3b82f6;
    --secondary-color: #4b5563;
    --secondary-color-dark: #374151;
    --accent-color: #10b981;
    --text-color: #1f2937;
    --text-color-light: #6b7280;
    --text-color-lighter: #9ca3af;
    --background-color: #ffffff;
    --background-color-alt: #f9fafb;
    --border-color: #e5e7eb;
    --error-color: #ef4444;
    --success-color: #10b981;
    --font-primary: 'Poppins', 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    --border-radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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-color-dark);
}

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

button {
    cursor: pointer;
}

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

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

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

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

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
}

.btn-tertiary:hover {
    background-color: var(--background-color-alt);
    color: var(--text-color);
}

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

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

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

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

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul li a span {
    font-size: 0.75rem;
    color: var(--text-color-light);
    margin-top: 0.25rem;
}

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

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

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

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.advantage-item .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

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

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

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

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

.cta {
    text-align: center;
}

.cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* About Products Section */
.about-products {
    padding: 5rem 1rem;
}

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

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

.quality-section {
    max-width: 800px;
    margin: 3rem auto;
}

.quality-section h3 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color-light);
}

/* History Today Section */
.history-today {
    background-color: var(--background-color-alt);
    padding: 3rem 1rem;
    margin: 2rem 0;
}

.history-today h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    color: var(--text-color-light);
}

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

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

.products > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.product-image {
    height: 250px;
    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: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.description {
    margin-bottom: 1.5rem;
    color: var(--text-color-light);
    flex-grow: 1;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Product Detail Page */
.product-detail {
    padding: 3rem 1rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-color-light);
}

.breadcrumb a {
    color: var(--text-color-light);
}

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

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

.product-gallery {
    position: relative;
}

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

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

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

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

.stars {
    display: flex;
    color: gold;
    margin-right: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 1.25rem;
    color: var(--text-color-light);
    text-decoration: line-through;
}

.discount {
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

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

.product-features {
    margin-bottom: 2rem;
}

.product-features ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    margin-right: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-controls button {
    background-color: var(--background-color);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-buttons .btn {
    flex: 1;
}

.product-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-color-light);
}

.product-meta-info > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-color-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

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

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

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

.tab-panel {
    display: none;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.specs-table th, .specs-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    font-weight: 600;
    background-color: var(--background-color-alt);
}

.reviews-summary {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.rating-bars {
    flex-grow: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rating-label {
    width: 90px;
}

.bar-container {
    flex-grow: 1;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    margin: 0 1rem;
}

.bar {
    height: 100%;
    background-color: gold;
    border-radius: 4px;
}

.rating-percent {
    width: 40px;
    text-align: right;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

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

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: var(--text-color-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.review-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.review-content {
    color: var(--text-color-light);
}

.related-products {
    padding: 3rem 0;
}

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

/* About Page */
.page-header {
    background-color: var(--background-color-alt);
    padding: 4rem 1rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.about-intro {
    padding: 4rem 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.values-list {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 2rem;
}

.values-list li {
    margin-bottom: 0.75rem;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.team-section {
    padding: 4rem 1rem;
    background-color: var(--background-color-alt);
}

.team-section h2, .team-section > p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

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

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

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

.team-member img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-member h3 {
    margin: 1rem 0 0.25rem;
}

.team-member p {
    padding: 0 1rem;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.company-culture {
    padding: 4rem 1rem;
}

.company-culture h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.culture-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.highlight-item {
    background-color: var(--background-color-alt);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.highlight-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
}

.testimonials {
    padding: 4rem 1rem;
    background-color: var(--background-color-alt);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 400px;
}

.testimonial-content {
    position: relative;
    padding: 0 1.5rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -2rem;
    left: -1rem;
    color: rgba(37, 99, 235, 0.1);
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-color-light);
    font-size: 0.875rem;
}

.cta-section {
    padding: 5rem 1rem;
    text-align: center;
    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;
    color: white;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Contact Page */
.contact-section {
    padding: 4rem 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    max-width: 500px;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

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

.contact-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-color-light);
}

.company-info {
    padding: 1.5rem;
    background-color: var(--background-color-alt);
    border-radius: var(--border-radius);
}

.company-info h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-form {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

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

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

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

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

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
}

.required {
    color: var(--error-color);
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-success svg {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 4rem 1rem;
    background-color: var(--background-color-alt);
}

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

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--background-color);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* Cart Page */
.cart-section {
    padding: 4rem 1rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1rem;
}

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

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

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

.cart-content {
    display: none;
}

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

.cart-table th {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-item-details {
    display: flex;
    gap: 1rem;
}

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

.cart-quantity {
    width: 100px;
}

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.cart-coupon {
    display: flex;
    gap: 0.5rem;
}

.cart-coupon input {
    padding: 0.625rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.cart-summary {
    background-color: var(--background-color-alt);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 400px;
    margin-left: auto;
}

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

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

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

.discount-row {
    color: var(--success-color);
    display: none;
}

.cart-checkout {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.continue-shopping {
    text-align: center;
}

/* Checkout Page */
.checkout-section {
    padding: 4rem 1rem;
}

.checkout-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1rem;
}

.checkout-content {
    display: none;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

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

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

.checkout-summary {
    background-color: var(--background-color-alt);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: fit-content;
}

.checkout-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-items {
    margin-bottom: 2rem;
}

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

.item-name {
    display: flex;
    gap: 0.5rem;
}

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

.checkout-totals {
    margin-bottom: 2rem;
}

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

.grand-total {
    font-weight: 700;
    font-size: 1.25rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.checkout-secure {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--success-color);
}

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

/* Success Page */
.success-section {
    padding: 5rem 1rem;
}

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

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

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

.success-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.success-info {
    margin-bottom: 2rem;
    color: var(--text-color-light);
}

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

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

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4, .footer-legal h4, .footer-contact h4, .footer-social h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-links a, .footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icons a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social .social-icons a:hover {
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

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

.cookie-more-info {
    font-size: 0.875rem;
    color: var(--text-color-light);
}

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

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

.notification p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content, .about-content, .culture-content, .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .culture-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 0 0.75rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .advantages-grid, .stats {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
        display: block;
    }
    
    .cart-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .cart-table tr {
        border: 1px solid var(--border-color);
        margin-bottom: 1rem;
        border-radius: var(--border-radius);
    }
    
    .cart-table td {
        border: none;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        padding-left: 50%;
    }
    
    .cart-table td:before {
        position: absolute;
        top: 1rem;
        left: 1rem;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
    }
    
    .cart-table td:nth-of-type(1):before { content: "Producto"; }
    .cart-table td:nth-of-type(2):before { content: "Precio"; }
    .cart-table td:nth-of-type(3):before { content: "Cantidad"; }
    .cart-table td:nth-of-type(4):before { content: "Total"; }
    .cart-table td:nth-of-type(5):before { content: ""; }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-coupon {
        width: 100%;
    }
    
    .cart-coupon input {
        flex-grow: 1;
    }
    
    .cart-summary {
        margin: 0 auto;
    }
    
    .culture-highlights {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .action-buttons, .cta-buttons, .success-actions {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
