/* Base Styles */
:root {
    --primary-color: #3a86ff;
    --primary-dark: #0056b3;
    --primary-light: #7aacff;
    --secondary-color: #ff9e00;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #eaeaea;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    position: relative;
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    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;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-cookie {
    padding: 8px 16px;
    font-size: 0.875rem;
    margin-right: 10px;
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: var(--primary-color);
    z-index: 9999;
    width: 0;
    transition: width 0.2s ease;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

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

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

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

#cart-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 0.75rem;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background-color: #f0f8ff;
    background-image: linear-gradient(135deg, rgba(58, 134, 255, 0.2) 0%, rgba(255, 158, 0, 0.1) 100%);
    padding: 100px 0;
    text-align: center;
    margin-bottom: 40px;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Fun Fact Section */
.fun-fact {
    background-color: #fff8e6;
    padding: 15px 0;
    margin-bottom: 40px;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.fun-fact .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fun-fact h3 {
    color: var(--secondary-color);
    margin: 0 15px 0 0;
    font-size: 1.2rem;
}

.fun-fact p {
    margin: 0;
    font-size: 1rem;
    font-style: italic;
}

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

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

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

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

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

.icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

.icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

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

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

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

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

.cta h3 {
    margin-bottom: 20px;
}

/* About Flights Section */
.about-flights {
    padding: 80px 0;
}

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

.about-flights p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.certification {
    margin-top: 40px;
}

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

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    min-width: 200px;
}

.cert-item svg {
    margin-right: 10px;
    color: var(--success-color);
}

/* Products Section */
.products {
    padding: 80px 0;
}

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

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px 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.25rem;
}

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

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

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

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    display: none;
}

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

.cookie-buttons {
    margin: 15px 0;
}

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

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1.2rem;
}

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

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    background-color: var(--bg-light);
    margin-bottom: 20px;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    margin: 0 10px;
    color: var(--text-light);
}

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

.breadcrumbs li:last-child {
    color: var(--text-color);
    font-weight: 600;
}

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

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

.product-gallery {
    position: relative;
}

.product-main-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

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

.flight-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tag.direct {
    background-color: #e3f6ff;
    color: #0078c8;
}

.tag.connection {
    background-color: #fff4e3;
    color: #e67700;
}

.tag.duration {
    background-color: #e6f7ec;
    color: #00a86b;
}

.tag.airline {
    background-color: #f0e6ff;
    color: #6941c6;
}

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

.departure, .arrival, .connection {
    text-align: center;
}

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

.flight-path {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.path-line {
    flex: 1;
    height: 2px;
    background-color: var(--primary-color);
}

.path-icon {
    margin: 0 10px;
    color: var(--primary-color);
}

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

.price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 10px;
}

.save-label {
    background-color: #ffedeb;
    color: #e53935;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

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

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

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

.flight-details li {
    margin-bottom: 8px;
}

.ticket-options {
    margin-bottom: 30px;
}

.option-selector {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.option-item.selected {
    background-color: #f0f7ff;
}

.option-content h4 {
    margin-bottom: 5px;
}

.option-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.option-price {
    font-weight: 600;
    color: var(--primary-color);
}

.option-check {
    color: var(--primary-color);
}

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

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

/* Flight Description */
.flight-description {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

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

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

.description-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Additional Info Tabs */
.additional-info {
    padding: 60px 0;
}

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

.tab-header {
    padding: 12px 24px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

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

.tab-panel {
    display: none;
}

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

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

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.amenity-icon {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.amenity-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.baggage-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

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

.baggage-item li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.policy-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

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

.policy-item li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.policy-note {
    grid-column: 1 / -1;
    padding: 15px;
    background-color: #fff9e6;
    border-left: 4px solid var(--warning-color);
    margin-top: 20px;
}

.policy-note p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

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

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

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

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

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

.related-card h3 {
    margin-bottom: 5px;
    padding: 0 15px;
}

.related-card p {
    color: var(--text-light);
    margin-bottom: 10px;
    padding: 0 15px;
    font-size: 0.9rem;
}

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

/* Cart Page */
.cart-hero {
    background-color: #f0f8ff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.cart-content {
    padding: 40px 0;
}

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

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

.empty-cart-icon svg {
    width: 64px;
    height: 64px;
}

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

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

.cart-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    padding: 20px;
    position: relative;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 20px;
}

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

.cart-item-details {
    flex: 1;
}

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

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

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

.quantity-value {
    margin: 0 10px;
    width: 40px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--danger-color);
}

.cart-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-top: 40px;
}

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

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.need-help {
    padding: 60px 0;
    background-color: var(--bg-light);
    margin-top: 60px;
}

.help-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.help-option {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 200px;
    transition: var(--transition);
}

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

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

.help-option h3 {
    margin-bottom: 10px;
}

.help-option p {
    margin-bottom: 0;
}

/* Checkout Page */
.checkout-hero {
    background-color: #f0f8ff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: -1;
}

.step.active:not(:last-child):after {
    background-color: var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

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

.step.active .step-name {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

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

.form-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

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

.checkout-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.order-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    position: sticky;
    top: 100px;
}

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

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

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

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

.checkout-item-details {
    flex: 1;
}

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

.checkout-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

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

.summary-totals {
    margin-top: 30px;
}

.order-security {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.security-icon {
    margin-right: 15px;
    color: var(--success-color);
}

.order-security p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Success Page */
.success-hero {
    padding: 80px 0;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

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

.success-icon svg {
    width: 64px;
    height: 64px;
}

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

.success-content p {
    margin-bottom: 30px;
}

.success-actions {
    margin-top: 30px;
}

.what-next {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

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

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

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

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

.step-card h3 {
    margin-bottom: 15px;
}

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

.customer-support {
    padding: 60px 0;
}

.support-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.support-option {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    min-width: 200px;
    transition: var(--transition);
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.support-option h3 {
    margin-bottom: 10px;
}

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

.explore-more {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.explore-more h2 {
    margin-bottom: 15px;
}

.explore-more p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* About Page */
.about-hero {
    background-color: #f0f8ff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.about-text li {
    margin-bottom: 10px;
}

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

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

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

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    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 {
    margin-top: 20px;
    margin-bottom: 5px;
    padding: 0 20px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.social-links a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.achievements {
    padding: 60px 0;
}

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

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

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

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

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

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

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

/* Contact Page */
.contact-hero {
    background-color: #f0f8ff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.contact-info {
    padding: 60px 0;
}

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

.contact-details h2 {
    margin-bottom: 40px;
}

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

.contact-icon {
    margin-right: 20px;
    color: var(--primary-color);
}

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

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

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

.social-connect h3 {
    margin-bottom: 20px;
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

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

.contact-form {
    display: grid;
    gap: 20px;
}

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

.faq 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: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .product-detail .product-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
        margin-top: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .advantages-grid,
    .product-grid,
    .related-grid,
    .team-grid,
    .achievement-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        margin-top: 20px;
        justify-content: center;
    }
    
    .social-icons a {
        margin: 0 7px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        margin-bottom: 10px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        margin-bottom: 15px;
    }
    
    .cart-item-remove {
        position: static;
        margin-top: 15px;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .btn {
        margin-bottom: 10px;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .checkout-actions .btn {
        margin-bottom: 10px;
    }
    
    .tab-headers {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab-header {
        border: 1px solid var(--border-color);
        border-bottom: none;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .tab-header:last-child {
        border-bottom: 1px solid var(--border-color);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .tab-header.active {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
}
