:root {
    --primary-color: #2c7da0;
    --primary-dark: #1a5e7c;
    --primary-light: #61a5c2;
    --secondary-color: #ffd166;
    --secondary-dark: #e9b949;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #38b000;
    --error-color: #d62828;
    --warning-color: #ffb703;
    --font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --border-radius: 4px;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

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

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

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

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

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

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

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

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

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    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;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-color: var(--background-light);
    background-image: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.6)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Countdown */
.countdown-container {
    margin: 40px 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#countdown div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#countdown span:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

#countdown span:last-child {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Quote */
.quote-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px auto;
    max-width: 800px;
    box-shadow: var(--box-shadow);
}

#daily-quote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}

#daily-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.quote-author {
    text-align: right;
    font-weight: 500;
    color: var(--text-light);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* About Services Section */
.about-services {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.about-services h3 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.certifications {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    box-shadow: var(--box-shadow);
}

.certifications ul {
    list-style: disc;
    padding-left: 20px;
}

.certifications li {
    margin-bottom: 10px;
}

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

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

.products > .container > p {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

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

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

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

.product-image {
    height: 200px;
    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.2rem;
}

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

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

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

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

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

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

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

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

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

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

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

.product-detail-info h1 {
    margin-bottom: 20px;
}

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

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

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

.product-detail-description ul li,
.product-detail-description ol li {
    margin-bottom: 10px;
}

.product-detail-actions {
    display: flex;
    gap: 15px;
}

.product-detail-actions .btn {
    padding: 12px 25px;
}

/* Tabs */
.product-additional-info {
    margin-top: 50px;
}

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

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

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

.tab-content {
    display: none;
}

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

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-light);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid white;
}

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

/* FAQ */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

/* Footer */
footer {
    background-color: #1a3c54;
    color: white;
    padding: 80px 0 30px;
}

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

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

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

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

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

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

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

.footer-contact svg {
    margin-right: 10px;
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

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

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

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* About Page */
.page-header {
    background-color: var(--background-light);
    padding: 60px 0;
    text-align: center;
}

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

.about-company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-values {
    margin: 30px 0;
}

.about-values li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

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

.value-text h3 {
    margin-bottom: 10px;
}

.about-company-stats {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

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

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

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

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

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

.team-member-image {
    height: 250px;
    overflow: hidden;
}

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

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

.team-member-title {
    padding: 0 20px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member-bio {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.team-member-social a {
    color: var(--text-light);
}

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

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

.testimonial-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial-quote {
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.author-name {
    font-weight: bold;
    margin-bottom: 5px;
}

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

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

.cta-section h2 {
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.contact-text h3 {
    margin-bottom: 5px;
}

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

/* Contact Form */
.contact-form-container {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

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

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

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

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

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

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

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

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-success {
    text-align: center;
    padding: 50px 0;
    display: none;
    flex-direction: column;
    align-items: center;
}

.form-success svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

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

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

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

/* Callback Form */
.callback-form {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.callback-form .form-row {
    flex: 1;
}

.callback-form .btn {
    height: 46px;
}

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

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.cart-empty {
    text-align: center;
    padding: 50px 0;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

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

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

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

.cart-items {
    display: none;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 15px;
    background-color: var(--background-light);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-weight: 500;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

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

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

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

.cart-product-details h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.cart-quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    color: var(--error-color);
}

.cart-summary {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    align-self: flex-start;
}

.cart-summary h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.cart-totals {
    margin-bottom: 30px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-total-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: none;
}

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

.continue-shopping {
    width: 100%;
    text-align: center;
}

.cart-help {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.cart-help h3 {
    margin-bottom: 15px;
}

.cart-help-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.cart-help-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
}

.cart-help-option svg {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cart-help-option:hover {
    color: var(--primary-color);
}

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

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

.checkout-form-container {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

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

.checkout-form-container h2:first-child {
    margin-top: 0;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.checkout-summary {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    align-self: flex-start;
}

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

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

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

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

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

.checkout-item-details h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

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

.checkout-item-quantity {
    margin-left: auto;
    font-weight: bold;
}

.checkout-totals {
    margin-bottom: 30px;
}

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

.checkout-total-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: none;
}

.checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    color: var(--text-light);
}

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

.checkout-help {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.success-container {
    max-width: 800px;
    margin: 0 auto 80px;
    background-color: var(--background-light);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
}

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

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

.success-details {
    margin-bottom: 30px;
}

.success-next-steps {
    text-align: left;
    margin: 30px 0;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
}

.success-next-steps h2 {
    margin-bottom: 20px;
}

.success-next-steps ol {
    padding-left: 20px;
}

.success-next-steps li {
    margin-bottom: 15px;
}

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

.success-recommendations {
    max-width: 800px;
    margin: 0 auto;
}

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

.success-recommendations > p {
    text-align: center;
    margin-bottom: 40px;
}

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

.recommendation-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

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

.recommendation-content h3 {
    margin-bottom: 15px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links li {
        margin-left: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    #countdown {
        gap: 15px;
    }
    
    #countdown span:first-child {
        font-size: 1.5rem;
    }
    
    .about-company-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }
    
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }
    
    .cart-product-price {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .advantage-items {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-grid,
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-help-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-product-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cart-product-total,
    .cart-product-quantity,
    .cart-product-remove {
        justify-content: center;
    }
    
    .success-buttons {
        flex-direction: column;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}
