/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}
img{
    width: 8rem;
    

}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #f30;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e62e00;
}

.btn-dark {
    background-color: #333;
}

.btn-dark:hover {
    background-color: #555;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #f30;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height : 80px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo span {
    color: #f30;
}

.nav-links {
    display: flex;
}

.nav-links a {
    margin: 0 15px;
    font-weight: 500;
    position: relative;
}

.nav-links a.active, 
.nav-links a:hover {
    color: #f30;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #f30;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons a {
    margin-left: 20px;
    font-size: 18px;
    color: #333;
    transition: color 0.3s;
}

.nav-icons a:hover {
    color: #f30;
}

.cart-count {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #f30;
    color: #fff;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#hero-video {
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 600px;
    padding: 60px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.page-hero {
    height: 300px;
    display: flex;
    align-items: center;
    background-color: #333;
    text-align: center;
    position: relative;
}

.page-hero .hero-content {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
.hero.page-hero {
    background-image: url('https://assets.ajio.com/medias/sys_master/root/20231206/I43t/65708603ddf7791519b4b275/-1117Wx1400H-469551557-black-MODEL.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0;
    color: white;
    position: relative;
}

.hero.page-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Optional overlay */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
}


/* New Arrivals Section Styles */
.new-arrivals {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    min-height: 400px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-category {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-price {
    color: #f30;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.product-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.add-to-cart {
    background-color: #f30;
    color: #fff;
    flex: 1;
}

.add-to-cart:hover {
    background-color: #e62e00;
}

.view-details {
    background-color: #eee;
    color: #333;
    flex: 1;
}

.view-details:hover {
    background-color: #ddd;
}

.view-more {
    text-align: center;
}

/* Categories Section Styles */
.categories {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-img {
    width: 100%;
    height: 100%;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transition: background 0.3s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(255, 51, 0, 0.8), transparent);
}

.category-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Sale Banner Styles */
.sale-banner {
    padding: 50px 0;
}

.banner-link {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner-content {
    width: 50%;
    background-color: #f30;
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-content .btn {
    background-color: #fff;
    color: #f30;
    align-self: flex-start;
}

.banner-content .btn:hover {
    background-color: #eee;
}

.banner-img {
    width: 50%;
    height: 300px;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category Section Styles (For Product Pages) */
.category-section {
    padding: 60px 0;
}

.category-section:nth-child(even) {
    background-color: #f9f9f9;
}

.category-title {
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #f30;
    bottom: -10px;
    left: 0;
}

.category-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #f30;
    bottom: -10px;
    left: 0;
}

.footer-column p {
    margin-bottom: 20px;
    color: #bbb;
}

.social-icons {
    display: flex;
}

.social-icons a {
    margin-right: 15px;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #f30;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #f30;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 0 15px;
    background-color: #f30;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e62e00;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Modal Styles - Cart, Login, Profile */
.cart-modal,
.login-modal,
.profile-modal,
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cart-modal-content,
.login-modal-content,
.profile-modal-content,
.success-modal-content {
    background-color: #fff;
    width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cart-modal-header,
.login-modal-header,
.profile-modal-header,
.success-modal-header {
    background-color: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-modal-header h3,
.login-modal-header h3,
.profile-modal-header h3,
.success-modal-header h3 {
    margin: 0;
}

.close-cart-modal,
.close-login-modal,
.close-profile-modal,
.close-success-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cart-modal-body,
.login-modal-body,
.profile-modal-body,
.success-modal-body {
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Cart Modal Specific Styles */
.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.cart-item-price {
    color: #f30;
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.quantity-value {
    width: 30px;
    text-align: center;
    margin: 0 5px;
}

.remove-item {
    position: absolute;
    top: 15px;
    right: 0;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #f30;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background-color: #f30;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #e62e00;
}

.empty-cart {
    text-align: center;
    padding: 20px;
    color: #888;
}

/* Login/Signup Modal Specific Styles */
.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    color: #888;
}

.auth-tab.active {
    color: #f30;
    border-bottom: 2px solid #f30;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.auth-button {
    width: 100%;
    padding: 12px;
    background-color: #f30;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-button:hover {
    background-color: #e62e00;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
}

.forgot-password {
    color: #888;
    font-size: 14px;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #f30;
}

/* Profile Modal Specific Styles */
.profile-info {
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: #ddd;
}

.profile-info h3 {
    margin-bottom: 10px;
}

.profile-info p {
    color: #888;
}

.profile-details {
    text-align: center;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #f30;
    bottom: -10px;
    left: 0;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content blockquote {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid #f30;
    font-style: italic;
    color: #666;
}

.about-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
}


.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%; /* or specific width */
    height: 300px; /* or any height you want */
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-values {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 36px;
    color: #f30;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.about-process {
    padding: 80px 0;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #f30;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 15px;
}

.about-team {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    margin: 20px 0 5px;
}

.member-role {
    color: #f30;
    font-weight: 500;
    margin-bottom: 10px;
}

.member-bio {
    padding: 0 20px 20px;
    color: #777;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #f30;
    bottom: -10px;
    left: 0;
}

.contact-info > p {
    margin-bottom: 30px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: #f30;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 51, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-item h3 {
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
}

.social-contact h3 {
    margin-bottom: 15px;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #f30;
    bottom: -10px;
    left: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f30;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: #666;
}

/* Checkout Page Styles */
.checkout-section {
    padding: 60px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.order-summary {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.order-summary h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.checkout-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.checkout-item-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.item-price {
    color: #f30;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-quantity {
    color: #666;
    font-size: 14px;
}

.checkout-item-total {
    font-weight: bold;
    font-size: 18px;
    min-width: 80px;
    text-align: right;
}

.cart-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-weight: bold;
    font-size: 20px;
}

.checkout-form-container {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
}

.form-section h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #f30;
    bottom: -10px;
    left: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #f30;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #f30;
    outline: none;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.payment-methods {
    display: flex;
    margin-bottom: 25px;
}

.payment-method {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.payment-method input {
    margin-right: 10px;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

.btn-primary {
    background-color: #f30;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-primary:hover {
    background-color: #e62e00;
}

.btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.empty-cart {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.success-modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.success-modal-header {
    background-color: #f5f5f5;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.success-modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-success-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.success-modal-body {
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 60px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.success-modal-body h2 {
    margin-bottom: 15px;
    color: #333;
}

.success-modal-body p {
    color: #666;
    margin-bottom: 20px;
}

.order-number {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-weight: bold;
}

/* Product Details Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.product-modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.product-modal-header {
    background-color: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-modal-header h3 {
    margin: 0;
}

.close-product-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.product-modal-body {
    padding: 20px;
    overflow-y: auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-detail-img {
    border-radius: 10px;
    overflow: hidden;
}

.product-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-info h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 28px;
}

.product-detail-category {
    color: #888;
    margin-bottom: 15px;
}

.product-detail-description,
.product-detail-features {
    margin-top: 20px;
}

.product-detail-description h4,
.product-detail-features h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.product-detail-features ul {
    padding-left: 20px;
}

.product-detail-features li {
    margin-bottom: 5px;
}

.product-detail-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.add-to-cart-detail {
    padding: 12px 25px;
    background-color: #f30;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-detail:hover {
    background-color: #e62e00;
}

.size-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    flex-grow: 1;
    font-size: 16px;
}

/* Sale Page Filter Styles */
.filters {
    padding: 20px 0;
    background-color: #f9f9f9;
    margin-bottom: 30px;
}

.filters-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-label h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: #f5f5f5;
}

.filter-btn.active {
    background-color: #f30;
    color: #fff;
    border-color: #f30;
}

/* Sale Tag Styles */
.sale-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f30;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
    z-index: 1;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

/* Promotion Banner Styles */
.promotion-banner {
    padding: 50px 0;
    margin-top: 50px;
}

.promo-container {
    background-color: #f30;
    border-radius: 10px;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.promo-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.promo-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.promo-content .btn {
    background-color: #fff;
    color: #f30;
    border: none;
    transition: background-color 0.3s;
}

.promo-content .btn:hover {
    background-color: #eee;
}

/* Global Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        max-width: 1100px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* About page responsive */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
        z-index: 100;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        margin: 0 0 20px 0;
        font-size: 18px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-category {
        font-size: 12px;
    }
    
    .product-price {
        font-size: 15px;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .product-buttons button {
        width: 100%;
        margin: 5px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sale-banner .banner-content {
        padding: 30px 20px;
    }
    
    .sale-banner h2 {
        font-size: 24px;
    }
    
    .sale-banner p {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* About page responsive */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    /* Contact page responsive */
    .info-item {
        flex-direction: column;
    }
    
    .info-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* Checkout page responsive */
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
        margin-bottom: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Login/Signup modal responsive */
    .login-modal-content, 
    .profile-modal-content,
    .success-modal-content {
        width: 95%;
        max-width: 400px;
    }
    
    /* Product detail responsive */
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-buttons {
        flex-direction: column;
    }
    
    .product-modal-content {
        width: 95%;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .promo-container {
        padding: 30px 20px;
    }
    
    .promo-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-products {
        grid-template-columns: 1fr;
    }
    
    .banner-img {
        display: none;
    }
    
    .sale-banner .banner-content {
        width: 100%;
        text-align: center;
    }
    
    /* Cart modal responsive */
    .cart-modal-content,
    .login-modal-content,
    .profile-modal-content {
        width: 95%;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cart-item-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cart-item-details {
        margin-bottom: 15px;
    }
    
    .remove-item {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    /* Product filters responsive */
    .filters-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        margin-top: 15px;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
        white-space: nowrap;
    }
    
    .filter-btn {
        margin-right: 10px;
    }
    
    /* Checkout item responsive */
    .checkout-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .checkout-item-img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .checkout-item-total {
        margin-top: 10px;
    }
    
    /* About page on small screens */
    .value-card {
        padding: 20px;
    }
    
    .process-steps {
        padding: 0 15px;
    }
    
    /* Contact page on small screens */
    .contact-form-container,
    .contact-info {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-icons a {
        margin-left: 10px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .product-card {
        min-height: auto;
    }
}

/* Ensure menu toggle works properly */
@media (min-width: 769px) {
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
    }
}

/* Responsive video tweaks */
@media (max-aspect-ratio: 16/9) {
    #hero-video {
        width: auto;
        height: 100%;
    }
}

@media (max-aspect-ratio: 9/16) {
    #hero-video {
        width: 300%;
        height: 100%;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Make tables responsive */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

/* Additional menu toggle functionality */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}