/* Base Styles */
:root {
    --primary: #0085ca;
    --primary-dark: #006ba1;
    --secondary: #f5a623;
    --background: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --success: #27ae60;
    --error: #e74c3c;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --gray-dark: #8c8c8c;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style-type: none;
}

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

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

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

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

nav ul {
    display: flex;
}

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

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

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

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

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

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

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

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

/* Hero Section */
.hero {
    background-color: #0085ca;
    background-image: linear-gradient(135deg, #0085ca 0%, #00a8e8 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="white" opacity="0.05" d="M0 0 L50 100 L100 0 Z" /></svg>');
    background-size: 100% 100%;
}

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

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

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

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

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

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

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

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

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

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

.benefit-item .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 133, 202, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-item .icon svg {
    color: var(--primary);
}

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

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

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

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

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

.benefits .btn-large {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

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

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

.about-products p {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.quality-assurance, .heritage {
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.quality-assurance h3, .heritage h3 {
    margin-bottom: 15px;
}

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

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 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: var(--shadow-lg);
}

.product-card.small {
    max-width: 300px;
}

.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-details {
    padding: 20px;
}

.product-details h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

.product-actions .btn {
    flex: 1;
    margin: 0 5px;
}

/* Daily Special Section */
.daily-special {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.daily-special h2 {
    text-align: center;
    margin-bottom: 30px;
}

.special-product {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.special-product img {
    width: 40%;
    height: 300px;
    object-fit: cover;
}

.special-content {
    padding: 30px;
    flex: 1;
}

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

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

/* This Day in History Section */
.this-day {
    padding: 60px 0;
}

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

.this-day .history-date {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.this-day .history-fact {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 350px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 133, 202, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial .stars {
    display: flex;
    color: var(--secondary);
    margin-bottom: 15px;
}

.testimonial p {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
footer {
    background-color: #002a3a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

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

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

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

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

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

.footer-column address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column address p {
    margin-bottom: 5px;
}

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

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

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

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

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.cookie-link {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.notification-content {
    display: flex;
    align-items: center;
    color: var(--success);
}

.notification-content svg {
    margin-right: 10px;
}

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

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

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

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

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

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

.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    background-color: var(--gray-light);
    padding: 15px;
    border-radius: var(--border-radius);
}

.feature svg {
    color: var(--primary);
    margin-right: 10px;
}

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

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

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

.price-block .price {
    font-size: 2rem;
    margin-bottom: 0;
}

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

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

.product-description h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.features-list, .info-list {
    padding-left: 20px;
}

.features-list li, .info-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.features-list li::before, .info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

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

.quantity-selector label {
    margin-right: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-size: 1rem;
}

.related-products {
    padding: 60px 0;
    background-color: var(--gray-light);
}

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

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

/* About Us Page */
.page-banner {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

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

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

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.mission-values {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

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

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

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

.team {
    padding: 80px 0;
}

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

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

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

.team-member {
    text-align: center;
}

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

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

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

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

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

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

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

.cta {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

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

.cta p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

.contact-item .detail h4 {
    margin-bottom: 5px;
}

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

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

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

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

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

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

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

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

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

.form-success {
    display: none;
    background-color: var(--success);
    color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    align-items: center;
}

.form-success svg {
    margin-right: 10px;
}

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

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

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

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

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

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

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

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

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

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

.cart-product-link {
    font-size: 0.9rem;
}

.cart-quantity {
    max-width: 120px;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

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

.empty-cart {
    padding: 50px 20px;
    text-align: center;
    display: none;
}

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

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

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

.cart-summary {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.cart-summary h2 {
    margin-bottom: 20px;
}

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

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

.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

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

.recommended-products {
    padding: 60px 0;
    background-color: var(--gray-light);
}

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

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

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

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

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

.checkout-details h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.checkbox-group {
    margin-top: 30px;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
}

.return-to-cart {
    margin-top: 15px;
    display: inline-block;
}

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

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

.checkout-item-info {
    display: flex;
    align-items: center;
}

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

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

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

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

.secure-checkout {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.secure-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.secure-item {
    display: flex;
    align-items: center;
    max-width: 300px;
}

.secure-item svg {
    margin-right: 15px;
    color: var(--primary);
}

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

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

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

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

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    color: var(--success);
    margin-bottom: 30px;
}

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

.success-details {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    text-align: left;
}

.what-next {
    margin-bottom: 50px;
}

.what-next h2 {
    margin-bottom: 30px;
}

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

.step {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

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

.step-content h3 {
    margin-bottom: 10px;
}

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

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

.share-experience {
    padding: 60px 0;
    background-color: var(--gray-light);
    text-align: center;
}

.share-experience h2 {
    margin-bottom: 15px;
}

.share-experience p {
    margin-bottom: 30px;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.share-btn svg {
    margin-right: 10px;
}

.share-btn:hover {
    transform: translateY(-3px);
}

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

.share-btn.facebook:hover {
    background-color: #344e86;
}

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

.share-btn.twitter:hover {
    background-color: #0d95e8;
}

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

.share-btn.whatsapp:hover {
    background-color: #21bd5c;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-grid, .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        margin-top: 40px;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .special-product {
        flex-direction: column;
    }
    
    .special-product img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px 10px;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cart-column {
        text-align: center;
    }
    
    .cart-column.product-info {
        flex-direction: column;
    }
    
    .cart-product-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .cart-quantity {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .statistics {
        flex-direction: column;
    }
    
    .stat {
        margin-bottom: 20px;
    }
    
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
