/* Base Styles */
:root {
    --primary-color: #112d4e;
    --secondary-color: #3f72af;
    --accent-color: #4da8da;
    --light-color: #f9f7f7;
    --dark-color: #1a1a2e;
    --text-color: #333;
    --border-color: #dbe2ef;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --max-width: 1200px;
    --border-radius: 6px;
    --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;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

.main-menu {
    display: flex;
    gap: 20px;
}

.main-menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

.main-menu li a.active::after,
.main-menu li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transform: scaleX(1);
    transition: var(--transition);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.page-hero {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.2rem;
}

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

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

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

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

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

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

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

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

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

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

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

.cta-button {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

/* Novice Mistakes Section */
.novice-mistakes {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.mistakes-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mistakes-image {
    flex: 0 0 30%;
    text-align: center;
    color: var(--secondary-color);
}

.mistakes-text {
    flex: 0 0 65%;
}

.mistakes-text ul li {
    margin-bottom: 30px;
}

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

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

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

.about-products p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.quality-guarantees, .why-choose, .company-history {
    margin-top: 40px;
}

.quality-guarantees h3, .why-choose h3, .company-history h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.quality-guarantees ul, .why-choose ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.quality-guarantees li, .why-choose li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.quality-guarantees li:before, .why-choose li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f5f7fa;
}

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

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

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

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

.service-icon {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

.product-info p {
    margin-bottom: 15px;
    color: #666;
}

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

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

.product-tabs {
    margin-top: 50px;
}

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

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

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

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

.features-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

.features-table th {
    background-color: #f5f7fa;
    font-weight: 600;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.benefit-item .benefit-icon {
    margin-bottom: 15px;
}

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

.related-products h2 {
    margin-bottom: 30px;
}

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

.related-product-card {
    background: #f5f7fa;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding-bottom: 20px;
}

.related-product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-product-card h3 {
    margin: 15px 0 10px;
    padding: 0 15px;
}

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f5f7fa;
}

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

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #666;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

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

.cta p {
    margin-bottom: 30px;
}

.consultation-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

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

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

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

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

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

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

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

address {
    font-style: normal;
    line-height: 1.8;
}

address p {
    margin-bottom: 5px;
}

address a {
    color: rgba(255, 255, 255, 0.8);
}

address a:hover {
    color: white;
}

/* Cookies Consent */
.cookies-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookies-consent.show {
    display: block;
}

.cookies-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookies-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-policy-link {
    margin-left: auto;
}

/* About Page */
.about-company {
    padding: 80px 0;
    background-color: white;
}

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

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: fit-content;
}

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

.about-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.about-text li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.company-stats {
    padding: 60px 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.company-stats .stat-number {
    color: white;
    font-size: 3rem;
}

.company-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.team {
    padding: 80px 0;
    background-color: #f5f7fa;
}

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

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

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

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

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

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

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

.team-member p {
    padding: 0 15px;
    margin-bottom: 10px;
}

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

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

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

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

.certifications {
    padding: 80px 0;
    background-color: white;
}

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

.certifications p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.certification-item {
    background: #f5f7fa;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.certification-icon {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background-color: white;
}

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

.contact-item {
    background: #f5f7fa;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.contact-icon {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-heading {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form .form-group label {
    color: var(--text-color);
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    border: 1px solid var(--border-color);
    background: #f9f9f9;
    color: var(--text-color);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    background: white;
    border-color: var(--secondary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto !important;
    margin-top: 5px;
}

.checkbox-group label {
    flex: 1;
}

.working-hours {
    padding: 60px 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.working-hours h2 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.working-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.working-day {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.day {
    font-weight: 700;
    margin-bottom: 10px;
}

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

.cart-container {
    background: #f5f7fa;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

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

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

.product-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

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

.product-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

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

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.cart-summary {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    min-width: 300px;
}

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

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

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

.cart-recommendations {
    padding: 60px 0;
    background-color: #f5f7fa;
}

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

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

.shopping-help {
    padding: 60px 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.shopping-help h2, .shopping-help p {
    color: white;
}

.shopping-help p {
    margin-bottom: 30px;
}

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

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

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

.checkout-form-container {
    background: #f5f7fa;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.checkout-form h2, .order-summary h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.form-section {
    margin-bottom: 30px;
}

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

.order-summary {
    background: #f5f7fa;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.summary-content {
    margin-bottom: 30px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

.summary-items {
    margin: 20px 0;
}

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

.item-name {
    flex: 1;
}

.item-quantity {
    color: #666;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.help-block {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
}

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

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

.success-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #f5f7fa;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.success-info, .success-email {
    margin-bottom: 30px;
}

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

.next-steps {
    padding: 80px 0;
    background-color: #f5f7fa;
}

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

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

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

.step-icon {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    }
    
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .mistakes-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .mistakes-image, .mistakes-text {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        margin-bottom: 15px;
    }
    
    .product-info {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-product-image {
        margin: 0 auto;
    }
    
    .product-quantity {
        justify-content: center;
    }
    
    .product-price, .product-total, .product-remove {
        text-align: center;
    }
    
    .cart-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .cart-summary {
        width: 100%;
    }
    
    .cart-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .benefits-container, .services-grid, .product-grid {
        grid-template-columns: 1fr;
    }
    
    .help-actions {
        flex-direction: column;
    }
}
