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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

h3 {
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;
}

h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
.header {
    background: #205175;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
    position: relative;
}

/* LOGO */
.header-left {
    display: flex;
    align-items: center;
    z-index: 1002;
}

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

.logo img {
    height: 54px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* NAVIGATION */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: #f5f5f5;
    color: #0066cc;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* DROPDOWN MENU */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #0066cc;
    padding-left: 1.5rem;
}

/* HEADER RIGHT ACTIONS */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1002;
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: #f5f5f5;
    color: #0066cc;
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 2rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.search-close {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) rotate(90deg);
}

/* MOBILE MENU BUTTON - FIXED */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTION */
.hero {
    width: 100%;
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-top: 6rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-offer {
    background: rgba(0, 0, 0, 0.02);
    padding: 2rem 3rem;
    border-radius: 15px;
    margin-top: 8rem;
}

.hero-offer h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-offer p {
    font-size: 1.2rem;
    color: #DAF262;
    margin-bottom: 1.5rem;
}

.cta-btn {
    padding: 1rem 2.5rem;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #0097a7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,188,212,0.4);
}

/* PROMO BANNER */
.promo-banner {
    position: relative;
    padding: 4rem 0;
    background-size: cover;
    background-position: center;
    margin: 0rem 0;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 77, 122, 0.9), rgba(26, 77, 100, 0));
}

.promo-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    padding: 1rem 2rem;
}

.promo-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-yellow {
    color: #DAF262;
    font-weight: bold;
}

.promo-content p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: left;
}

.shop-btn {
    padding: 0.8rem 2rem;
    background: #DAF262;
    color: #1a4d7a;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.shop-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* SHOP BY CATEGORY */
.shop-category {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a4d7a;
}

.category-carousel {
    position: relative;
    padding: 0 3rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.category-card {
    flex: 0 0 268px;
    height: 376px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 122, 0.8);
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #205175;
    padding: 1.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #DAF262;
    color: #1a4d7a;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.category-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1a4d7a;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: #0066cc;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* ABOUT SECTION */
.about-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 3rem;
    position: relative;
}

.about-image {
    height: 970px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-features {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 248px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: linear-gradient(356deg, rgba(0, 70, 123, 0.75) 2.91%, rgba(0, 128, 225, 0.75) 96.74%);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-box {
    flex: 1;
    background: transparent;
    padding: 1rem;
    color: white;
    text-align: center;
}

.feature-box h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* TRUST BADGES */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.badge {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #1a4d7a;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.badge img {
    width: 60px;
    height: auto;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.badge img[alt="5-Star Reviews"] {
    width: 130px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials-carousel {
    position: relative;
    padding: 0 3rem;
    margin-top: 2rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.testimonial-card h4 {
    color: #1a4d7a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer strong {
    display: block;
    color: #1a4d7a;
}

.verified {
    color: #27ae60;
    font-size: 0.9rem;
}

.view-btn {
    padding: 0.6rem 1.5rem;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.view-btn:hover {
    background: #0097a7;
    transform: translateY(-2px);
}

/* VISIT SHOWROOM */
.visit-showroom {
    padding: 4rem 0;
    background: #f8f9fa;
}

.showroom-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.showroom-image {
    flex: 1;
    min-width: 300px;
}

.showroom-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

.showroom-info {
    flex: 1;
    background: #205175;
    padding: 3rem 3rem 2rem 3rem;
    border-radius: 0 15px 15px 0;
    color: white;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    height: 700px;
}

.showroom-info h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.showroom-info > p {
    color: #e3f2fd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.contact-map-wrapper {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    background: transparent;
    padding: 0;
    flex: 1;
}

.contact-info p {
    margin-bottom: 1rem;
    color: white;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.map-container {
    width: 320px;
    height: 240px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.map-container iframe {
    display: block;
}

.faq-section {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.faq-content {
    flex: 1;
}

.faq-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-section p {
    color: #e3f2fd;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-section .view-btn {
    background: #00bcd4;
    color: white;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
    align-self: center;
}

.faq-section .view-btn:hover {
    background: #00acc1;
}

/* NEWSLETTER */
.newsletter {
    background: #010101;
    padding: 3rem 0 0 0;
    position: relative;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding-bottom: 3rem;
}

.newsletter-logo {
    flex-shrink: 0;
    padding-right: 12rem;
}

.newsletter-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.newsletter-text {
    color: white;
    flex-shrink: 0;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.newsletter-text p {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 500px;
    margin-left: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 0.95rem;
    background: #f5f5f5;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #0097a7;
}

.newsletter-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* FOOTER */
.footer {
    background: #010101;
    color: #999;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.footer-section.brand {
    padding-right: 2rem;
}

.footer-section h3.tagline {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-section .description {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #00bcd4;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.social-links a:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(170deg);
}

.footer-note {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #00bcd4;
}

/* ===================================
   RESPONSIVE DESIGN - HAMBURGER MENU FIXED
   =================================== */

/* Tablets (992px and below) */
@media (max-width: 992px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }

    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 0;
        border-radius: 0;
        color: #1a1a1a;
        font-size: 1.1rem;
    }

    .nav-link:hover {
        background: #f8f9fa;
        color: #0066cc;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f8f8;
        margin: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        width: 100%;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        color: #555;
        font-size: 1rem;
    }

    .dropdown-menu a:hover {
        background: #ffffff;
        color: #0066cc;
    }

    .dropdown-icon {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .header-container {
        gap: 1rem;
    }

    /* Hero Section */
    .hero {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: auto;
        min-height: 500px;
    }

    .about-features {
        position: relative;
        height: auto;
        flex-direction: column;
        padding: 2rem;
    }

    .feature-box {
        margin-bottom: 1.5rem;
    }

    .feature-box:last-child {
        margin-bottom: 0;
    }
    
    /* Showroom Section */
    .showroom-content {
        flex-direction: column;
    }
    
    .showroom-image img {
        border-radius: 15px 15px 0 0;
        height: 400px;
    }
    
    .showroom-info {
        border-radius: 0 0 15px 15px;
        height: auto;
    }
    
    .contact-map-wrapper {
        flex-direction: column;
    }
    
    .map-container {
        width: 100%;
    }
    
    .faq-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-section .view-btn {
        align-self: flex-start;
    }

    /* Newsletter */
    .newsletter-logo {
        padding-right: 4rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }

    .logo img {
        height: 40px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2.5px;
    }

    .nav {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    /* Hero Section */
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content {
        margin-top: 3rem;
    }

    .hero-offer {
        margin-top: 4rem;
        padding: 1.5rem 2rem;
    }
    
    .hero-offer h2 {
        font-size: 1.5rem;
    }

    /* Promo Banner */
    .promo-content h3 {
        font-size: 1.5rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Category Carousel */
    .category-card {
        flex: 0 0 268px;
        height: 376px;
    }
    
    .category-carousel {
        padding: 0 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* About Section */
    .about-image {
        min-height: 400px;
    }

    .about-features {
        padding: 1.5rem;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-carousel {
        padding: 0 2rem;
    }

    /* Showroom Section */
    .showroom-info h2 {
        font-size: 2rem;
    }

    .showroom-info {
        padding: 2rem 1.5rem;
    }

    /* Newsletter */
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .newsletter-logo {
        padding-right: 0;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Search */
    .search-overlay {
        padding-top: 5rem;
    }

    .search-input {
        font-size: 1.2rem;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Header */
    .header-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .logo img {
        height: 35px;
    }

    .header-right {
        gap: 0.25rem;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-btn span {
        width: 20px;
        height: 2px;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section */
    .hero {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content {
        margin-top: 2rem;
    }
    
    .hero-offer {
        padding: 1.5rem;
        margin-top: 3rem;
    }
    
    .hero-offer h2 {
        font-size: 1.2rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Promo Banner */
    .promo-content h3 {
        font-size: 1.2rem;
    }

    .promo-content {
        padding: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Category Carousel */
    .category-card {
        flex: 0 0 268px;
        height: 376px;
    }

    .category-carousel {
        padding: 0 1rem;
    }

    /* About Section */
    .about-image {
        min-height: 300px;
    }

    .about-features {
        padding: 1rem;
    }

    .feature-box {
        margin-bottom: 1rem;
    }

    /* Testimonials */
    .testimonials-carousel {
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Showroom Section */
    .showroom-info h2 {
        font-size: 1.8rem;
    }

    .showroom-info {
        padding: 1.5rem 1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .faq-section h3 {
        font-size: 1.2rem;
    }

    /* Newsletter */
    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-content {
        padding-bottom: 2rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-section.brand {
        padding-right: 0;
    }

    /* Search */
    .search-container {
        padding: 0 1rem;
    }

    .search-input {
        font-size: 1rem;
        padding: 1rem 3.5rem 1rem 1.5rem;
    }

    .search-close {
        right: 2rem;
    }
}
}

/* ABOUT US PAGE STYLES */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Parallax and fade-in effects */
.parallax-section {
    background-attachment: color: linear-gradient(356deg, rgba(0, 70, 123, 0.75) 2.91%, rgba(0, 128, 225, 0.75) 96.74%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-image {
    overflow: hidden;
}

.parallax-image img {
    transition: transform 0.1s ease-out;
    transform-origin: center;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ABOUT HERO SECTION */
.about-hero {
    width: 100%;
    position: relative;
    height: 90vh;
    background-image: url('images/bed6.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: #fff;
    line-height: 1.2;
}

/* OUR STORY SECTION */
.story-section {
    background: white;
    padding: 0;
    overflow: hidden;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 500px;
    position: relative;
}

.story-content-box {
    background: linear-gradient(356deg, rgba(0, 70, 123, 0.75) 2.91%, rgba(0, 128, 225, 0.75) 96.74%);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.story-content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.story-content-box p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.story-image-box {
    overflow: hidden;
}

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

/* MEET OUR TEAM SECTION */
.team-section {
    background: white;
    padding: 0;
    overflow: hidden;
    margin: 2rem 0;
}

.team-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.team-image-box {
    overflow: hidden;
}

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

.team-content-box {
    background: #205175;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.team-content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.team-content-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* SALES MANAGERS SECTION */
.managers-section {
    background: linear-gradient(356deg, rgba(0, 70, 123, 0.75) 2.91%, rgba(0, 128, 225, 0.75) 96.74%);
    padding: 4rem 0;
}

.managers-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.manager-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manager-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.manager-image {
    height: 350px;
    overflow: hidden;
}

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

.manager-card h3 {
    font-size: 1.5rem;
    color: #205175;
    padding: 1.5rem 2rem 0.5rem 2rem;
    margin: 0;
}

.manager-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    padding: 0 2rem 2rem 2rem;
    margin: 0;
}

/* DELIVERY BANNER SECTION */
.delivery-banner {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: #f8f9fa;
}

.delivery-banner-image {
    width: 100%;
    height: 300%;
}

.delivery-banner-image img {
    width: 100%;
    position: cover;
    height: 106vh;
    object-fit: cover;
    padding-bottom: 20rem;

}

/* DELIVERY FEATURES SECTION */
.delivery-features-section {
    background: linear-gradient(356deg, rgba(0, 70, 123, 0.75) 2.91%, rgba(0, 128, 225, 0.75) 96.74%);
    padding: 3rem 0;
}

.delivery-features-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.delivery-feature {
    text-align: center;
    color: white;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.delivery-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.delivery-feature img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.delivery-feature img.quality-icon {
    width: 80px;
    height: 80px;
}

.delivery-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
    font-weight: 600;
}

.delivery-feature p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* RESPONSIVE DESIGN FOR ABOUT US PAGE */
@media (max-width: 992px) {
    .parallax-section {
        background-attachment: scroll;
    }

    .story-wrapper,
    .team-wrapper {
        grid-template-columns: 1fr;
    }

    .story-content-box,
    .team-content-box {
        padding: 3rem 2rem;
    }

    .story-image-box,
    .team-image-box {
        height: 400px;
    }

    .team-wrapper {
        margin: 2rem 1rem;
    }

    .managers-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .delivery-banner {
        height: 400px;
    }

    .delivery-features-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }

    .about-hero-content h1 {
        font-size: 1.5rem;
    }

    .story-content-box,
    .team-content-box {
        padding: 2rem 1.5rem;
    }

    .story-content-box h2,
    .team-content-box h2 {
        font-size: 2rem;
    }

    .story-image-box,
    .team-image-box {
        height: 300px;
    }

    .team-wrapper {
        margin: 1rem;
    }

    .manager-image {
        height: 300px;
    }

    .manager-card h3 {
        font-size: 1.3rem;
        padding: 1rem 1.5rem 0.5rem 1.5rem;
    }

    .manager-card p {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .delivery-banner {
        height: 350px;
    }

    .delivery-features-section {
        padding: 2rem 0;
    }

    .delivery-feature {
        padding: 1rem;
    }

    .delivery-feature img {
        width: 60px;
        height: 60px;
    }

    .delivery-feature img.quality-icon {
        width: 72px;
        height: 72px;
    }

    .delivery-feature h3 {
        font-size: 1.1rem;
    }

    .delivery-feature p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 40vh;
    }

    .about-hero-content h1 {
        font-size: 1.2rem;
    }

    .story-content-box h2,
    .team-content-box h2 {
        font-size: 1.5rem;
    }

    .story-image-box,
    .team-image-box {
        height: 250px;
    }

    .team-wrapper {
        margin: 0.5rem;
        border-radius: 15px;
    }

    .manager-card {
        border-radius: 15px;
    }

    .manager-image {
        height: 250px;
    }

    .delivery-banner {
        height: 300px;
    }

    .delivery-features-section {
        padding: 1.5rem 0;
    }

    .delivery-feature h3 {
        font-size: 1rem;
    }

    .delivery-feature p {
        font-size: 0.8rem;
    }

    .delivery-feature img {
        width: 50px;
        height: 50px;
    }

    .delivery-feature img.quality-icon {
        width: 60px;
        height: 60px;
    }
}

/* CONTACT HERO SECTION */
.contact-hero {
    width: 100%;
    position: relative;
    height: 90vh;
    background-image: url('https://i.pinimg.com/736x/c1/72/f0/c172f0077e2ef87bea44f932fd08633d.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    animation: slideUp 1s ease-out;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: 20rem;
    margin-bottom: 10rem;
    line-height: 1.2;
    animation: fadeInDown 1.5s ease-out;
}

.hero-offer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 2.5rem 3.5rem;
    border-radius: 20px;
    margin-top: 6rem;
    animation: scaleIn 1.5s ease-out;
}

.hero-offer h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #DAF262;
}

.hero-offer p {
    font-size: 1.3rem;
    color: #e0f7fa;
    margin-bottom: 1.5rem;
}

/* CONTACT SECTION */
.contact-section {
    background: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    animation: fadeInRight 1.5s ease-out;
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #205175;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.2);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.cta-btn {
    padding: 1.2rem 2.8rem;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    align-self: flex-start;
}

.cta-btn:hover {
    background: #0097a7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.5);
}

css/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f5f5f5;
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

h3 {
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;
}

h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
.header {
    background: #205175;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

/* LOGO */
.header-left {
    display: flex;
    align-items: center;
}

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

.logo img {
    height: 54px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* NAVIGATION */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: #f5f5f5;
    color: #0066cc;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* DROPDOWN MENU */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #0066cc;
    padding-left: 1.5rem;
}

/* HEADER RIGHT ACTIONS */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: #f5f5f5;
    color: #0066cc;
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 2rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.search-close {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) rotate(90deg);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* BREADCRUMBS */
.breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs li a {
    color: #00bcd4;
    text-decoration: none;
}

.breadcrumbs li a:hover {
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: #333;
}

/* SPECIALS PAGE RESPONSIVE STYLES */

.specials-hero {
    width: 100%;
    position: relative;
    height: 80vh;
    background-image: url('https://i.pinimg.com/736x/14/0a/ac/140aac4727e1a70ef9cbf1f8b4b30008.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.specials-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInDown 1.5s ease-out;
}

.hero-offer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 2.5rem 3.5rem;
    border-radius: 20px;
    margin-top: 10rem;
    animation: scaleIn 1.5s ease-out;
}

.hero-offer h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #DAF262;
}

/* Specials Section */
.specials-section {
    background: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.specials-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 1.5s ease-out;
}

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

.specials-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #205175;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.card-features {
    list-style: none;
    margin-bottom: 1rem;
    padding: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.check-mark {
    color: #00bcd4;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.sale-badge {
    background: #ffed4e;
    color: #1a4d7a;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.price-info {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.discounted-price {
    color: #1a1a1a;
    font-weight: 700;
}

.cta-btn {
    padding: 0.9rem 1.8rem;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    display: block; 
    margin: 0 auto; 
    margin-top: 1rem; 
}

.cta-btn:hover {
    background: #0097a7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.5);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pag-btn {
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
}

.pag-btn:hover {
    background: #e0e0e0;
}

.pag-current {
    font-size: 1rem;
    color: #333;
}

/* ===================================
   MOBILE RESPONSIVE STYLES FOR SPECIALS PAGE
   =================================== */

/* Large Tablets and Small Desktops (1200px and below) */
@media (max-width: 1200px) {
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .specials-hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-offer {
        margin-top: 8rem;
        padding: 2rem 3rem;
    }
    
    .hero-offer h2 {
        font-size: 1.6rem;
    }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
    .specials-hero {
        height: 60vh;
    }
    
    .specials-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-offer {
        margin-top: 6rem;
        padding: 1.5rem 2rem;
    }
    
    .hero-offer h2 {
        font-size: 1.4rem;
    }
    
    .specials-section {
        padding: 3rem 0;
    }
    
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .specials-card img {
        height: 200px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .specials-hero {
        height: 50vh;
    }
    
    .specials-hero-content {
        padding: 1rem;
    }
    
    .specials-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-offer {
        margin-top: 4rem;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .hero-offer h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .specials-section {
        padding: 2rem 0;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specials-card {
        border-radius: 15px;
    }
    
    .specials-card img {
        height: 220px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .card-features li {
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 200px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .pag-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .pag-current {
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .specials-hero {
        height: 40vh;
    }
    
    .specials-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-offer {
        margin-top: 3rem;
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .hero-offer h2 {
        font-size: 1rem;
    }
    
    .specials-section {
        padding: 1.5rem 0;
    }
    
    .specials-grid {
        gap: 1rem;
    }
    
    .specials-card {
        border-radius: 12px;
    }
    
    .specials-card img {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .card-features {
        margin-bottom: 0.75rem;
    }
    
    .card-features li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .check-mark {
        font-size: 1rem;
        margin-right: 0.4rem;
    }
    
    .sale-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .price-info {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .original-price {
        font-size: 0.9rem;
    }
    
    .discounted-price {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .pagination {
        gap: 0.5rem;
    }
    
    .pag-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .pag-current {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
    .specials-hero {
        height: 35vh;
    }
    
    .specials-hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-offer {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .hero-offer h2 {
        font-size: 0.9rem;
    }
    
    .specials-card img {
        height: 160px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .card-features li {
        font-size: 0.8rem;
    }
    
    .cta-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Animation keyframes for specials page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .specials-card:hover {
        transform: none;
    }
    
    .cta-btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    }
    
    .specials-card {
        transition: transform 0.2s ease;
    }
    
    .specials-card:active {
        transform: scale(0.98);
    }
}

/* High DPI screen optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .specials-hero {
        background-image: url('images/special.jpeg');
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .specials-hero::before,
    .specials-hero-content,
    .hero-offer,
    .specials-card {
        animation: none;
        transition: none;
    }
    
    .specials-card:hover {
        transform: none;
    }
    
    .cta-btn:hover {
        transform: none;
    }
}
/* PRODUCT PAGE STYLES */

.product-section {
    padding: 4rem 0;
    background: #ffffff;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

/* PRODUCT GALLERY */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    width: 100%;
    height: 600px;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.zoom-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.thumbnail-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.thumbnail-gallery img:hover {
    border-color: #00bcd4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.thumbnail-gallery img.active {
    border-color: #00bcd4;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

/* PRODUCT DETAILS */
.product-details {
    padding: 1rem 0;
}

.product-header {
    margin-bottom: 1.5rem;
}

.product-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-count {
    color: #666;
    font-size: 0.95rem;
}

.product-sku {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.product-sku span {
    color: #666;
    font-weight: 500;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.price-info {
    margin: 0;
}

.discounted-price {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stock-status.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-description-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #00bcd4;
}

.product-description {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #333;
    padding: 0.5rem;
}

.feature-item svg {
    flex-shrink: 0;
}

/* PRODUCT OPTIONS */
.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.option-group select:hover {
    border-color: #00bcd4;
}

.option-group select:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

/* COLOR SELECTOR */
.color-selector {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

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

.color-option.active {
    border-color: #00bcd4;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #00bcd4;
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* QUANTITY SELECTOR */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 50px;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
}

.qty-btn:hover {
    background: #00bcd4;
    color: white;
}

.qty-btn:active {
    transform: scale(0.95);
}

#qty {
    width: 70px;
    height: 50px;
    border: none;
    border-left: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
}

/* ACTION BUTTONS */
.action-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(0, 188, 212, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.4);
}

.cta-btn.primary:active {
    transform: translateY(0);
}

.cta-btn.secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.cta-btn.secondary:hover {
    border-color: #00bcd4;
    color: #00bcd4;
    transform: translateY(-2px);
}

/* PRODUCT META */
.product-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #555;
    font-size: 0.95rem;
}

.meta-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.meta-item svg {
    color: #00bcd4;
    flex-shrink: 0;
}

/* SHARE SECTION */
.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.share-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #00bcd4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.share-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* PRODUCT TABS */
.product-tabs {
    max-width: 1400px;
    margin: 4rem auto 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tabs-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #00bcd4;
    background: rgba(0, 188, 212, 0.05);
}

.tab-btn.active {
    color: #00bcd4;
    background: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00bcd4;
}

.tabs-content {
    padding: 3rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.tab-panel h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.tab-panel p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tab-panel ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tab-panel ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
}

.tab-panel ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-weight: bold;
}

/* SPECS TABLE */
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1.25rem 1.5rem;
    color: #555;
}

.specs-table td:first-child {
    background: #f8f9fa;
    width: 35%;
}

/* SHIPPING INFO */
.shipping-info {
    display: grid;
    gap: 1.5rem;
}

.info-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #00bcd4;
}

.info-box h4 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-box p {
    margin-bottom: 0.5rem;
}

.info-box ul {
    margin-top: 1rem;
}

.info-box ul li {
    margin-bottom: 0.75rem;
}

/* REVIEWS */
.reviews-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.rating-overview {
    text-align: center;
}

.avg-rating {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stars-large {
    color: #ffc107;
    font-size: 2rem;
    letter-spacing: 4px;
    margin: 0.5rem 0;
}

.rating-overview p {
    color: #666;
    font-size: 1rem;
}

.review-list {
    display: grid;
    gap: 1.5rem;
}

.review-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.verified {
    color: #2e7d32;
    font-size: 0.85rem;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
}

/* YOU MAY ALSO LIKE SECTION */

.related-products {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.related-products .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.related-products .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8f9fa;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.badge-bestseller {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 188, 212, 0.95);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.related-card:hover .quick-view {
    transform: translateY(0);
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-rating-small span:first-child {
    color: #ffc107;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rating-count {
    color: #999;
    font-size: 0.85rem;
}

.related-price {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.btn-add-cart:active {
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN FOR PRODUCT PAGE
   =================================== */

@media (max-width: 1200px) {
    .product-container {
        gap: 3rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .related-grid .related-card:last-child {
        display: none;
    }
}

@media (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery {
        position: static;
    }
    
    .main-image {
        height: 500px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .product-header h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 50%;
    }
    
    .tabs-content {
        padding: 2rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .related-grid .related-card:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 2rem 0;
    }
    
    .main-image {
        height: 400px;
        border-radius: 15px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .thumbnail-gallery img {
        height: 80px;
    }
    
    .product-header h1 {
        font-size: 1.75rem;
    }
    
    .discounted-price {
        font-size: 1.6rem;
    }
    
    .price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .features-grid {
        padding: 1rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .tabs-header {
        overflow-x: scroll;
    }
    
    .tab-btn {
        flex: 0 0 auto;
        padding: 1rem 1.5rem;
    }
    
    .tabs-content {
        padding: 1.5rem;
    }
    
    .tab-panel h3 {
        font-size: 1.5rem;
    }
    
    .related-products {
        padding: 3rem 0;
    }
    
    .related-products .section-title {
        font-size: 2rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .related-grid .related-card:nth-child(n+3) {
        display: none;
    }
    
    .related-image {
        height: 220px;
    }
    
    .related-content {
        padding: 1rem;
    }
    
    .related-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 300px;
        border-radius: 12px;
    }
    
    .discount-badge {
        top: 10px;
        left: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .zoom-btn {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .thumbnail-gallery img {
        height: 70px;
        border-radius: 8px;
    }
    
    .product-header h1 {
        font-size: 1.5rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .review-count {
        font-size: 0.85rem;
    }
    
    .price-container {
        padding: 1rem;
    }
    
    .discounted-price {
        font-size: 1.4rem;
    }
    
    .stock-status {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .product-description-box {
        padding: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 0.25rem;
    }
    
    .color-selector {
        gap: 0.75rem;
    }
    
    .color-option {
        width: 40px;
        height: 40px;
    }
    
    .quantity-selector {
        width: 100%;
    }
    
    .qty-btn {
        flex: 1;
    }
    
    #qty {
        flex: 1;
    }
    
    .action-buttons {
        gap: 0.75rem;
    }
    
    .cta-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .product-meta {
        padding: 1rem;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
    
    .share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .tabs-content {
        padding: 1rem;
    }
    
    .tab-panel h3 {
        font-size: 1.3rem;
    }
    
    .tab-panel p,
    .tab-panel li {
        font-size: 0.9rem;
    }
    
    .specs-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h4 {
        font-size: 1rem;
    }
    
    .reviews-summary {
        padding: 1.5rem;
    }
    
    .avg-rating {
        font-size: 3rem;
    }
    
    .stars-large {
        font-size: 1.5rem;
    }
    
    .review-item {
        padding: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .related-products {
        padding: 2rem 0;
    }
    
    .related-products .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid .related-card {
        display: block;
    }
    
    .related-grid .related-card:nth-child(n+3) {
        display: block;
    }
    
    .related-image {
        height: 250px;
    }
    
    .related-content h3 {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .related-price {
        font-size: 1.2rem;
    }
    
    .btn-add-cart {
        padding: 0.85rem;
        font-size: 0.9rem;
    }
}

/* Additional animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #00bcd4;
    outline-offset: 2px;
}

button:focus-visible,
select:focus-visible,
input:focus-visible {
    outline: 2px solid #00bcd4;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    pointer-events: none;
    opacity: 0.6;
    cursor: wait;
}

/* Hover effects for interactive elements */
a, button, select, input[type="button"], input[type="submit"] {
    -webkit-tap-highlight-color: transparent;
}

/* Print styles */
@media print {
    .header,
    .breadcrumbs,
    .action-buttons,
    .share-section,
    .related-products,
    .newsletter,
    .footer {
        display: none;
    }
    
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .product-tabs {
        box-shadow: none;
    }
    
    .tabs-header {
        display: none;
    }
    
    .tab-panel {
        display: block !important;
        page-break-inside: avoid;
    }
}

/* //////////////////////////////////
   MOBILE MENU – MISSING FIXES
////////////////////////////////// */
@media (max-width: 992px) {
    /* 1. hamburger always on top */
    .mobile-menu-btn {
        display: flex;
        z-index: 1003;
    }

    /* 2. nav panel – start off-screen */
    .nav {
        position: fixed;
        top: 80px;               /* header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1001;           /* sits below hamburger */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    /* 3. bring it into view */
    .nav.active {
        transform: translateX(0);
    }

    /* mobile links stay the original blue */
    .nav-list .nav-link,
    .dropdown-menu a {
          color: #0066cc;
}

    /* 4. lock body scroll when open */
    body.menu-open {
        overflow: hidden;
    }

    /* 5. dropdown tweaks for mobile */
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f8f8;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        width: 100%;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        color: #555;
    }

    .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
}

    .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            will-change: background-position;
        }
        .parallax-image img {
            transform-origin: center;
            will-change: transform;
            transition: transform .1s ease-out;
        }
        @media (max-width: 768px) {
            .parallax { background-attachment: scroll; }
            .parallax-image img { transform: none !important; }
        }