:root {
    --primary-color: #e8a143;
    --primary-color-light: #f3bc6c;
    --primary-color-dark: #d08c2e;
    --secondary-color: #1e3a68;
    --secondary-color-light: #2c5696;
    --secondary-color-dark: #132645;
    --accent-color: #e15f41;
    --text-color: #333333;
    --text-color-light: #666666;
    --background-color: #ffffff;
    --background-alt: #f9f9f9;
    --background-dark: #f2f2f2;
    --border-color: #e5e5e5;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1280px;
    --header-height: 80px;
}

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

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

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

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

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

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-color-light);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
    font-size: 1rem;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-add-to-cart, .btn-buy-now {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-to-cart {
    background-color: white;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

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

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

.btn-buy-now:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-review {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-checkout {
    width: 100%;
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-apply {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-accept, .btn-customize, .btn-reject {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

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

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

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

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

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

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

.btn-more-reviews {
    display: block;
    width: fit-content;
    margin: 1.5rem auto 0;
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: underline;
    transition: var(--transition);
}

.btn-more-reviews:hover {
    color: var(--primary-color);
}

.btn-assistance {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    margin-top: 10px;
    font-weight: 500;
    transition: var(--transition);
}

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    position: relative;
}

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

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

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

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

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(30, 58, 104, 0.85), rgba(30, 58, 104, 0.85)), url('https://source.unsplash.com/random/1600x900/?dubai');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

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

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

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

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

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

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

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

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

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 50px;
}

.stat-item {
    padding: 20px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

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

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

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

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

.product-link {
    display: block;
    color: var(--text-color);
}

.product-image {
    height: 250px;
    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;
    color: var(--secondary-color-dark);
}

.product-description {
    color: var(--text-color-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

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

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

.stars {
    color: var(--primary-color);
}

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

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

.product-actions button {
    flex: 1;
}

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

.testimonials-slider {
    margin-bottom: 30px;
}

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

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

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 600;
    color: var(--secondary-color);
}

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

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

/* New Customer Section */
.new-customer {
    padding: 80px 0;
    background-color: var(--background-alt);
}

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

.new-customer-text {
    max-width: 500px;
}

.benefits {
    margin-top: 20px;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.benefits li svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.new-customer-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.new-customer-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.new-customer-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
}

.new-customer-form button {
    margin-top: 10px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-company {
    max-width: 300px;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

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

.footer-links-column ul li a:hover {
    color: var(--primary-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

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

/* Product Detail Page */
.breadcrumb {
    background-color: var(--background-alt);
    padding: 15px 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb ul li {
    font-size: 0.875rem;
    color: var(--text-color-light);
}

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

.breadcrumb ul li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

.product-detail {
    padding: 60px 0;
}

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

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

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

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

.product-info-container h1 {
    margin-bottom: 15px;
    color: var(--secondary-color-dark);
}

.product-availability, .product-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-availability svg, .product-duration svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.product-highlights {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.product-highlights h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-highlights ul {
    list-style-type: disc;
    padding-left: 20px;
}

.product-highlights ul li {
    margin-bottom: 8px;
}

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

.quantity-selector {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.quantity-decrease, .quantity-increase {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-alt);
    border: 1px solid var(--border-color);
    font-size: 1.25rem;
    user-select: none;
}

.quantity-decrease {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.quantity-increase {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quantity-selector input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    font-family: var(--font-primary);
}

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

.product-description h2, .product-description h3 {
    color: var(--secondary-color);
    margin-top: 30px;
}

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

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

.product-additional {
    margin-bottom: 60px;
}

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

.tab-btn {
    padding: 15px 25px;
    background-color: transparent;
    color: var(--text-color-light);
    border: none;
    font-weight: 500;
    position: relative;
}

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

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

.tab-content {
    background-color: white;
    padding: 30px;
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.tab-content.hidden {
    display: none;
}

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

.rating-average {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.big-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

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

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

.rating-label {
    width: 60px;
    font-size: 0.875rem;
    color: var(--text-color-light);
}

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

.rating-fill {
    height: 100%;
    background-color: var(--primary-color);
}

.rating-percent {
    font-size: 0.875rem;
    color: var(--text-color-light);
    width: 40px;
    text-align: right;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
}

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

.author-name {
    font-weight: 600;
    color: var(--secondary-color);
}

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

.review-rating {
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--background-alt);
}

.faq-question h4 {
    margin-bottom: 0;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.location-address {
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-map {
    height: 300px;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.location-transport h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.location-transport p, .location-transport ul {
    margin-bottom: 15px;
}

.location-transport ul {
    list-style-type: disc;
    padding-left: 20px;
}

.location-note {
    font-style: italic;
    color: var(--text-color-light);
}

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

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

/* About Page */
.about-hero {
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(30, 58, 104, 0.85), rgba(30, 58, 104, 0.85)), url('https://source.unsplash.com/random/1600x900/?dubai-skyline');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.about-hero h1, .contact-hero h1 {
    color: white;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: start;
}

.about-content h2 {
    margin-top: 40px;
    color: var(--secondary-color);
}

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

.about-values li {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
}

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

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

.about-image {
    position: sticky;
    top: 100px;
}

.rounded-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    margin-bottom: 30px;
}

.certifications {
    padding: 80px 0;
    background-color: var(--background-alt);
}

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

.certification-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
}

.certification-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.certification-text h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.team-section {
    padding: 80px 0;
}

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

.team-member {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

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

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

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

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

/* Contact Page */
.contact-hero {
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(30, 58, 104, 0.85), rgba(30, 58, 104, 0.85)), url('https://source.unsplash.com/random/1600x900/?dubai-office');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.contact-content {
    padding: 80px 0;
}

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

.contact-form-container h2, .contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

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

.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-md);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
}

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

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

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

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

.info-content p {
    margin-bottom: 10px;
}

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

.contact-social h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

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

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

.contact-registration {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-registration h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.faq-section {
    padding: 60px 0 80px;
    background-color: var(--background-alt);
}

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

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

.cart-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    margin-top: 40px;
}

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

.empty-cart {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

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

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.cart-item-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 5px;
}

.cart-item-remove {
    color: var(--error-color);
    background: none;
    border: none;
    margin-left: auto;
    cursor: pointer;
    flex-shrink: 0;
}

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

.cart-summary h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.summary-item.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 20px;
}

.promo-code {
    display: flex;
    margin: 20px 0;
}

.promo-code input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-family: var(--font-primary);
}

.continue-shopping {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.continue-shopping a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

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

.recommendations {
    padding: 60px 0;
    background-color: var(--background-alt);
}

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

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

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

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

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

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--background-alt);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

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

.step.completed .step-number {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step.active .step-name, .step.completed .step-name {
    color: var(--text-color);
    font-weight: 500;
}

.step.completed + .step::after {
    background-color: var(--success-color);
}

.checkout-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    margin-top: 40px;
}

.checkout-form-container h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.form-section {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-section .form-group:last-child {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

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

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

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

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

.checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.checkout-item-name {
    font-weight: 500;
    margin-bottom: 5px;
}

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

.checkout-item-quantity {
    margin-left: auto;
    color: var(--text-color-light);
}

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

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    color: var(--secondary-color);
    font-weight: 500;
}

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

.guarantee {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.guarantee svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.guarantee h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.guarantee p {
    font-size: 0.875rem;
    color: var(--text-color-light);
    margin-bottom: 0;
}

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

.assistance p {
    margin-bottom: 10px;
}

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

.success-message {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

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

.success-message h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.success-message p {
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.success-next-steps {
    margin: 50px 0;
    text-align: left;
}

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

.success-next-steps ol {
    list-style-type: none;
    counter-reset: step-counter;
}

.success-next-steps ol li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.success-next-steps ol li:not(:last-child) .step-icon::after {
    content: '';
    width: 2px;
    height: calc(100% + 30px);
    background-color: var(--border-color);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

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

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

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

.extras-section {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.extras-section h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mini-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

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

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

.mini-image {
    height: 80px;
    overflow: hidden;
}

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

.mini-content {
    padding: 10px;
    background-color: var(--background-alt);
}

.mini-content h3 {
    font-size: 0.875rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

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

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

.support-contacts {
    margin-top: 20px;
}

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    :root {
        --container-width: 720px;
    }
    
    .product-detail-grid, 
    .about-grid, 
    .contact-grid, 
    .cart-content, 
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary, 
    .cart-summary, 
    .about-image {
        position: static;
        margin-top: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-company {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 540px;
        --header-height: 70px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .new-customer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .form-section {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --container-width: 100%;
        --padding-x: 15px;
    }
    
    .container {
        padding-left: var(--padding-x);
        padding-right: var(--padding-x);
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .advantages,
    .about-products,
    .products,
    .testimonials,
    .new-customer,
    .about-company,
    .certifications,
    .team-section,
    .contact-content,
    .cart-section,
    .checkout-section,
    .success-section {
        padding: 40px 0;
    }
    
    .advantages-grid,
    .products-grid,
    .related-products-grid,
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-content .about-values li {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
