/* 
* Baykar E-commerce - Main Stylesheet
* Theme: Baykar Tech
* Version: 1.0
*/

/* ========== Base Styles ========== */
:root {
    --primary-color: #004f9f;
    --secondary-color: #e30613;
    --accent-color: #f5a700;
    --dark-color: #222831;
    --light-color: #f9f9f9;
    --gray-color: #6c757d;
    --light-gray-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --white-color: #ffffff;
    --black-color: #000000;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --header-height: 80px;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--dark-color);
    background-color: var(--white-color);
    line-height: 1.6;
    font-size: 16px;
}

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

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

ul {
    list-style-type: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

/* ========== Button Styles ========== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn:hover {
    background-color: #003b7a;
    color: var(--white-color);
}

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

.btn-primary:hover {
    background-color: #003b7a;
}

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

.btn-secondary:hover {
    background-color: #c00;
}

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

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

/* ========== Form Styles ========== */
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 16px;
    transition: var(--transition);
}

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

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

.required {
    color: var(--secondary-color);
}

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

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

.form-group-row .form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}

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

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-bottom: 0;
}

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

/* ========== Header Styles ========== */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
}

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

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 40px;
}

.logo {
    max-width: 150px;
    display: flex;
    align-items: center;
    margin-right: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    max-height: 60px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 600px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--light-gray-color);
    color: var(--dark-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-btn:hover,
.cart-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 79, 159, 0.3);
}

#cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, var(--secondary-color), #ff1744);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white-color);
    box-shadow: 0 2px 6px rgba(227, 6, 19, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========== Mobile Menu Styles ========== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--light-gray-color);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 79, 159, 0.3);
}

.mobile-menu-toggle:hover span {
    background-color: var(--white-color);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active {
    background-color: var(--primary-color);
}

.mobile-menu-toggle.active span {
    background-color: var(--white-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ========== Hero Section Styles ========== */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, #001b36 100%);
    color: var(--white-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero .btn {
    padding: 15px 30px;
    font-size: 18px;
    margin-top: 20px;
}

/* ========== Features Section Styles ========== */
.features {
    background-color: var(--light-color);
}

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

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

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

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

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    text-align: center;
}

.stat {
    padding: 20px;
}

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

/* ========== Products Section Styles ========== */
.products {
    text-align: center;
}

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

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

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.product-card h3 {
    margin: 15px;
    font-size: 1.2rem;
    min-height: 50px;
}

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

.product-card .description {
    padding: 0 15px;
    margin-bottom: 15px;
    color: var(--gray-color);
    min-height: 70px;
}

.product-buttons {
    display: flex;
    padding: 15px;
    gap: 10px;
}

.product-buttons .btn {
    flex: 1;
    padding: 8px 15px;
}

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

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--gray-color);
}

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

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

.breadcrumbs span {
    color: var(--dark-color);
}

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

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.product-info h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

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

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

.stock {
    background-color: var(--success-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

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

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

.product-features h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.product-features li {
    margin-bottom: 5px;
}

.quantity {
    margin-bottom: 20px;
}

.quantity label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    background-color: var(--light-gray-color);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

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

.quantity input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    margin: 0;
    font-size: 16px;
}

.size-selector, .color-selector {
    margin-bottom: 20px;
}

.size-selector label, .color-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.size-options, .color-options {
    display: flex;
    gap: 10px;
}

.size-option {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.size-option:hover {
    border-color: var(--primary-color);
}

.size-option.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-option:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.color-option.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(0, 79, 159, 0.2);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.tab-btn {
    padding: 15px 20px;
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    position: relative;
}

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

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

.tab-btn.active::after {
    transform: scaleX(1);
}

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

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

.tab-pane h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.tab-pane p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.tab-pane ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 20px;
}

.tab-pane li {
    margin-bottom: 5px;
    line-height: 1.8;
}

.reviews {
    margin-top: 20px;
}

.review {
    padding: 20px;
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

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

.review-author {
    font-weight: 500;
}

.review-date {
    color: var(--gray-color);
    font-size: 14px;
}

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

.review-content p {
    line-height: 1.8;
}

/* ========== Related Products Section Styles ========== */
.related-products {
    background-color: var(--light-color);
    text-align: center;
}

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

/* ========== Testimonials Styles ========== */
.testimonials {
    background-color: var(--light-color);
    text-align: center;
}

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

.testimonial {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: left;
}

.rating {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.testimonial p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

/* ========== Complaint Form Styles ========== */
.complaint-form {
    background-color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.complaint-form .container {
    max-width: 800px;
}

.complaint-form form {
    text-align: left;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-top: 30px;
}

/* ========== About Page Styles ========== */
.page-header {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, #001b36 100%);
    color: var(--white-color);
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white-color);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-text h2 {
    margin-top: 40px;
}

.values-list {
    padding-left: 20px;
    list-style-type: disc;
}

.values-list li {
    margin-bottom: 10px;
}

.team-section {
    background-color: var(--light-color);
    text-align: center;
}

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

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

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

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

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

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

.team-member p {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.team-member p:nth-of-type(1) {
    font-weight: 500;
    color: var(--primary-color);
}

.team-member .social-icons {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-member .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray-color);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--dark-color);
}

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

.achievements {
    padding: 60px 0;
    text-align: center;
}

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

.achievement {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.achievement h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ========== Contact Page Styles ========== */
.contact-section {
    padding: 60px 0;
}

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

.contact-info {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    margin-right: 15px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

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

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

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

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

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

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

.faq-section {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
}

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

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.8;
}

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

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

.cart-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
}

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

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

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

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

.item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

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

.item-variant {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.remove-item {
    background: none;
    border: none;
    color: var(--danger-color);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.cart-item-quantity .quantity-control {
    width: 100px;
}

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

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

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

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

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 10px;
}

.promo-code {
    margin-top: 30px;
}

.promo-form {
    display: flex;
    margin-top: 10px;
}

.promo-form input {
    flex: 1;
    margin-bottom: 0;
    margin-right: 10px;
}

.promo-form .btn {
    width: auto;
}

.accepted-payment {
    margin-top: 30px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 35px;
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

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

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

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

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

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

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.edit-cart {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: underline;
}

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

.summary-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray-color);
}

.summary-item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    flex-shrink: 0;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

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

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

.summary-item-price-qty {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.summary-total-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray-color);
}

.summary-total-item.grand-total {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 10px;
}

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

.secure-icon {
    margin-right: 10px;
    color: var(--success-color);
}

.secure-checkout p {
    font-size: 14px;
    margin-bottom: 0;
}

.need-help {
    margin-top: 30px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.need-help h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.need-help p {
    margin-bottom: 5px;
    font-size: 14px;
}

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

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

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

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

.success-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

.success-info {
    margin-top: 50px;
    text-align: left;
}

.success-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.success-step {
    position: relative;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.success-step h3 {
    margin-top: 10px;
    font-size: 1.1rem;
}

.success-support {
    margin-top: 50px;
    text-align: left;
}

.support-contact {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    color: var(--light-gray-color);
}

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

.footer-links-column h4 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links-column ul li a {
    color: var(--light-gray-color);
    transition: var(--transition);
}

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

.footer-links-column p {
    color: var(--light-gray-color);
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-social h4 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-social .social-icons {
    margin-top: 20px;
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 100%;
    margin-bottom: 15px;
}

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

.cookie-more {
    font-size: 14px;
    margin-left: 15px;
    align-self: center;
}

/* ========== Notification Styles ========== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 15px;
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: center;
}

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

.notification-content p {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== About Products Section Styles ========== */
.about-products {
    background-color: var(--light-color);
    padding: 60px 0;
}

.about-products .container {
    max-width: 900px;
}

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

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

.quality-info {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-top: 30px;
}

.quality-info h3 {
    margin-bottom: 15px;
}

.quality-info ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-top: 15px;
}

.quality-info li {
    margin-bottom: 10px;
}

/* ========== Responsive Styles ========== */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .product-layout {
        gap: 30px;
    }
    
    .contact-grid, 
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    header .container {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 20px;
        gap: 12px;
        position: relative;
    }

    .logo {
        order: 1;
        max-width: 110px;
        margin-right: 0;
    }

    .logo img {
        max-height: 45px;
    }

    .header-buttons {
        order: 2;
        margin-left: auto;
        gap: 12px;
    }

    .cart-btn {
        width: 44px;
        height: 44px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        max-height: 0;
        overflow: hidden;
        order: 4;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.3s ease forwards;
    }

    nav ul li:nth-child(1) {
        animation-delay: 0.1s;
    }

    nav ul li:nth-child(2) {
        animation-delay: 0.15s;
    }

    nav ul li:nth-child(3) {
        animation-delay: 0.2s;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    nav ul li a {
        display: block;
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 500;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    nav ul li a::after {
        display: none;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: linear-gradient(90deg, rgba(0, 79, 159, 0.08), transparent);
        border-left-color: var(--primary-color);
        color: var(--primary-color);
        padding-left: 28px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .size-options, .color-options {
        gap: 8px;
    }
    
    .size-option {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .quantity-control {
        gap: 8px;
    }
    
    .product-actions {
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-header,
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 10px;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 0 15px;
        font-size: 0.9rem;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
        text-align: left;
        border-bottom: 1px solid var(--light-gray-color);
    }
    
    .tab-btn::after {
        display: none;
    }
    
    .tab-btn.active {
        background-color: var(--light-color);
    }
    
    .size-options, .color-options {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .size-option {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .quantity {
        width: 100%;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-buttons .btn {
        width: 100%;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 30px;
    }
    
    .item-image {
        width: 100px;
        height: 100px;
    }
    
    .cart-item-quantity {
        display: flex;
        align-items: center;
    }
    
    .cart-item-quantity .quantity-control {
        width: 150px;
        margin-left: auto;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        padding: 12px 15px;
    }
    
    .notification.show {
        top: 80px;
    }
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* ========== SPA Cart Styles ========== */
.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 30px;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px 120px 50px;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--white-color);
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
}

.cart-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

.cart-item-price {
    color: var(--gray-color);
    font-size: 0.9rem;
}

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

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--light-gray-color);
    background: var(--white-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.qty-input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.cart-item-total {
    text-align: right;
    font-weight: bold;
    color: var(--primary-color);
}

.cart-item-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--danger-color);
    padding: 5px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

.cart-summary {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray-color);
}

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

.summary-row.total {
    border-top: 2px solid var(--light-gray-color);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr 100px 30px;
        gap: 15px;
    }
    
    .cart-item-total {
        grid-column: 2 / 3;
        text-align: left;
        margin-top: 10px;
    }
    
    .cart-summary {
        position: static;
    }
    
    .checkout-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .checkout-summary {
        position: static !important;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== Notification Styles ========== */
.notification {
    position: fixed;
    top: -100px;
    right: 20px;
    background: var(--success-color);
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 10000;
    transition: top 0.3s ease;
}

.notification.show {
    top: 100px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content svg {
    flex-shrink: 0;
}

.notification-content p {
    margin: 0;
    font-weight: 500;
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .faq-question {
        padding: 12px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-toggle {
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 12px;
        font-size: 0.85rem;
    }
    
    .tab-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .tab-pane {
        padding: 15px 0;
        font-size: 0.9rem;
    }
    
    .tab-pane h3 {
        font-size: 1.1rem;
        margin-top: 15px;
    }
    
    .tab-pane ul {
        padding-left: 20px;
    }
    
    .size-options, .color-options {
        gap: 5px;
    }
    
    .size-option {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .quantity-control {
        width: 100%;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    #quantity {
        font-size: 0.9rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .notification {
        right: 5px;
        left: 5px;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links-column {
        text-align: center;
    }
}
