/* Global Styles */
:root {
    --primary-color: #2255a4;
    --primary-light: #3972d3;
    --primary-dark: #1a4280;
    --secondary-color: #27ae60;
    --secondary-light: #2ecc71;
    --secondary-dark: #219150;
    --accent-color: #e67e22;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #e9ecef;
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    --border-dark: #ced4da;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 6px;
    --card-border-radius: 10px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

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

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

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

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

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

/* Header & Navigation */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    object-fit: contain;
}

nav ul {
    display: flex;
    align-items: center;
}

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

nav ul li:first-child {
    margin-left: 0;
}

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

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

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

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

.cart-icon svg {
    margin-right: 5px;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Time Display */
.time-display {
    padding: 10px 0;
    background-color: var(--background-dark);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.time-display .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#clock, #date {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    margin-bottom: 60px;
}

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

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

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
    background-image: linear-gradient(to right, var(--primary-dark), var(--primary-color));
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Advantages Section */
.advantages {
    padding: 60px 0;
    background-color: var(--background-color);
    text-align: center;
}

.advantages h2 {
    margin-bottom: 40px;
}

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

.advantage-item {
    padding: 30px;
    border-radius: var(--card-border-radius);
    background-color: var(--background-light);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.advantage-item h3 {
    margin-bottom: 15px;
}

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

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

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

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

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

.cta {
    margin-top: 30px;
}

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

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

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

.about-content p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.8;
}

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

.quality-guarantees h3 {
    margin-bottom: 20px;
}

.quality-guarantees ul {
    list-style: none;
}

.quality-guarantees li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.quality-guarantees li svg {
    margin-right: 15px;
    min-width: 24px;
    color: var(--success-color);
}

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

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

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 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 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

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

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

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

/* Product Detail */
.product-detail {
    padding: 60px 0;
    background-color: var(--background-color);
}

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

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

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

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

.product-info-container {
    display: flex;
    flex-direction: column;
}

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

.product-info-container .product-price {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    color: var(--warning-color);
    margin-right: 10px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.product-description p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-description h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.product-description ul,
.product-description ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-description li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    list-style-type: none;
}

.product-description li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

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

.product-meta p {
    margin-bottom: 10px;
}

.product-meta p:last-child {
    margin-bottom: 0;
}

.product-actions {
    margin-top: auto;
}

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

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

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

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

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

.quantity-btn:disabled {
    color: var(--text-muted);
    cursor: not-allowed;
}

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

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

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

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

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-panel {
    display: none;
}

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

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

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

.specs-table th {
    width: 35%;
    background-color: var(--background-light);
    font-weight: 600;
}

.benefit-item,
.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.benefit-icon,
.feature-icon {
    margin-right: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-content h4,
.feature-content h4 {
    margin-bottom: 10px;
}

.client-testimonial {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius);
}

.client-testimonial blockquote {
    font-style: italic;
    margin-bottom: 15px;
}

.client-testimonial cite {
    font-weight: 600;
}

.review-summary {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.rating-average {
    text-align: center;
    flex-shrink: 0;
}

.big-rating {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-average .stars {
    justify-content: center;
    margin-bottom: 10px;
    margin-right: 0;
}

.rating-average p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-level {
    width: 60px;
    text-align: left;
    font-size: 0.9rem;
}

.progress {
    flex-grow: 1;
    height: 8px;
    background-color: var(--background-dark);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 15px;
}

.progress-bar {
    height: 100%;
    background-color: var(--warning-color);
}

.rating-percent {
    width: 40px;
    text-align: right;
    font-size: 0.9rem;
}

.customer-reviews .review {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.customer-reviews .review:last-child {
    border-bottom: none;
}

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

.reviewer h4 {
    margin-bottom: 5px;
}

.verified {
    color: var(--success-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.review-rating {
    text-align: right;
}

.review-rating .stars {
    justify-content: flex-end;
    margin-bottom: 5px;
    margin-right: 0;
}

.review-rating .date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review h5 {
    margin-bottom: 10px;
}

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

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

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

.report-category {
    margin-bottom: 40px;
}

.report-category h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.report-category ul {
    padding-left: 0;
}

.report-category li {
    margin-bottom: 20px;
}

.report-category li strong {
    display: block;
    margin-bottom: 5px;
}

.report-category li p {
    color: var(--text-light);
}

.custom-reporting,
.upgrade-options {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: var(--card-border-radius);
}

.custom-reporting h4,
.upgrade-options h3 {
    margin-bottom: 20px;
}

.custom-reporting ul,
.upgrade-options ul {
    padding-left: 20px;
}

.custom-reporting li,
.upgrade-options li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    list-style-type: none;
}

.custom-reporting li::before,
.upgrade-options li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

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

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

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

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.team-member p:first-of-type {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

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

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: var(--background-color);
    text-align: center;
}

.partners-section h2 {
    margin-bottom: 15px;
}

.partners-section > p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

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

.partner-icon {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.partner p {
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

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

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

.contact-info > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

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

.info-item h3 {
    margin-bottom: 10px;
}

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

.info-item .text-muted {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

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

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

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

.contact-form {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--background-color);
    transition: border-color 0.3s ease;
}

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

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

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

.form-group.checkbox label {
    margin-bottom: 0;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

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

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

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

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

/* Cart Section */
.cart-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

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

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

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

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

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

.cart-table th {
    text-align: left;
    padding: 15px;
    background-color: var(--background-light);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
}

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

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

.product-quantity .quantity-control {
    margin: 0 auto;
}

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

.product-remove button:hover {
    color: var(--text-color);
}

.cart-summary {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.cart-totals {
    width: 400px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: var(--card-border-radius);
    margin-bottom: 30px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.cart-actions .btn {
    flex: 1;
}

/* Checkout Section */
.checkout-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

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

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

#checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.order-summary-container {
    position: sticky;
    top: 100px;
    align-self: start;
}

.order-summary {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

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

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

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

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

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

.item-price {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.secure-checkout {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: var(--card-border-radius);
    margin-bottom: 30px;
}

.secure-icon {
    margin-right: 20px;
    color: var(--success-color);
}

.secure-info h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.secure-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.payment-methods {
    text-align: center;
}

.payment-methods h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-icon {
    color: var(--text-muted);
}

/* Success Section */
.success-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

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

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

.success-message {
    font-size: 1.25rem;
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-content {
    max-width: 1200px;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-content a {
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-col address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col address a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col address a:hover {
    color: white;
}

.footer-col .social-links {
    margin-top: 20px;
}

.footer-col .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

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

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

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary-container {
        position: static;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 100;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    nav ul li:last-child {
        margin-bottom: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .product-grid,
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .advantage-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    #checkout-form {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none;
    }
    
    .cart-summary {
        flex-direction: column;
    }
    
    .cart-totals {
        width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .product-grid,
    .related-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-tabs .tab-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 0 calc(50% - 5px);
        padding: 10px;
        text-align: center;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
