/* Global Styles */
:root {
    --header-bg: #131921;
    --nav-secondary-bg: #232F3E;
    --accent-yellow: #FEBD69;
    --accent-yellow-hover: #F3A847;
    --text-white: #FFFFFF;
    --text-light: #CCCCCC;
    --footer-bg: #F4F4F5;
    --footer-text: #374151;
    --footer-heading: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- HEADER --- */
.main-header {
    background-color: var(--header-bg);
    color: var(--text-white);
    width: 100%;
    z-index: 40;
    position: relative;
}

.header-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
}

/* Mobile Menu Button */
.menu-btn {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Mobile Menu Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 16px;
    background-color: var(--header-bg);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.mobile-menu-list {
    list-style: none;
    color: #333;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-list a {
    display: block;
    padding: 12px 16px;
    transition: background-color 0.2s;
}

.mobile-menu-list a:hover {
    background-color: #f5f5f5;
}

.text-red {
    color: #dc2626 !important;
    font-weight: 500;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    display: none;
}

.menu-overlay.show {
    display: block;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-link img {
    height: 60px;
    object-fit: contain;
}

/* Desktop Location */
.header-location {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 24px;
    color: white;
}

.icon-yellow {
    color: var(--accent-yellow);
}

.location-text {
    line-height: 1.2;
}

.location-text .line1 {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

.location-text .line2 {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

/* Search Box */
.header-search {
    flex: 1;
    margin: 0 24px;
}

.header-search-mobile {
    padding: 0 16px 12px 16px;
}

.search-box {
    display: flex;
    width: 100%;
}

.search-box input {
    flex: 1;
    height: 40px;
    padding: 0 12px;
    color: black;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 15px;
}

.search-box button {
    background-color: var(--accent-yellow);
    color: black;
    padding: 0 16px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    background-color: var(--accent-yellow-hover);
}

/* Right Actions */
.header-actions-right {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    white-space: nowrap;
}

.header-link {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    color: white;
}

.header-link .line1 {
    font-size: 12px;
}

.header-link .line2 {
    font-weight: 600;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.mobile-icon,
.cart-icon-link {
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #f3a847;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Categories Bar */
.cat-bar {
    display: flex;
    align-items: center;
    background-color: #222F3E;
    /* Desktop */
    color: #c1c2c2;
    height: 40px;
}

/* Mobile View */
@media (max-width: 768px) {
    .cat-bar {
        background-color: #131921;
    }
}

.cat-bar-scroll {
    padding-left: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
}

/* Hide Scrollbar */
.cat-bar-scroll::-webkit-scrollbar {
    display: none;
}

.cat-bar-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cat-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    font-weight: 500;
    transition: color 0.2s;
    color: inherit;
}

.cat-link:hover {
    color: white;
}

.cat-divider {
    padding: 0 12px;
    color: #9ca3af;
}

/* Mobile Deliver Bar */
.deliver-bar-mobile {
    background-color: var(--nav-secondary-bg);
    padding: 0 16px;
    color: #c1c2c2;
    height: 40px;
    display: flex;
    align-items: center;
}

.deliver-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
}

/* Responsive Utilities */
@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
}

/* --- SLIDER --- */
.slider-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Device specific slider display */
@media (max-width: 1024px) {
    .slide-desktop {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .slide-tablet {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .slide-tablet {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .slide-mobile {
        display: none !important;
    }
}

/* --- FOOTER --- */
.site-footer {
    background-color: #ffffff;
    color: #4D4D4D;
    font-family: inherit;
}

.footer-container {
    max-width: 1280px;
    /* 7xl */
    margin: 0 auto;
    padding: 0 16px;
}

/* Footer Top Section */
.footer-top-section {
    background-color: #ffffff;
    padding: 56px 16px;
    /* py-14 */
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-top-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.footer-top-content h2 {
    font-size: 2.25rem;
    /* 4xl */
    font-weight: 600;
    color: #4D4D4D;
    margin-bottom: 12px;
}

.footer-top-content p {
    font-size: 1.125rem;
    /* lg */
    color: #4D4D4D;
    opacity: 0.8;
}

.whatsapp-contact-btn {
    margin-top: 24px;
    display: inline-block;
    width: fit-content;
    border: 1px solid #000;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.whatsapp-contact-btn:hover {
    background-color: #000;
    color: #fff;
}

.btn-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-contact-btn svg {
    fill: #000;
    transition: fill 0.2s;
}

.whatsapp-contact-btn:hover svg {
    fill: #fff;
}

/* Footer Main Section */
.footer-main-section {
    padding: 48px 16px;
    /* py-12 */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h3 {
    font-weight: 600;
    font-size: 1.125rem;
    /* text-lg */
    margin-bottom: 16px;
    color: #000;
}

.footer-col address {
    font-style: normal;
}

.footer-col p,
.footer-col ul li {
    font-size: 0.875rem;
    /* text-sm */
    margin-bottom: 8px;
    color: #4D4D4D;
}

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

.footer-col a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: #000;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px 0 0 6px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: #000;
}

.newsletter-form button {
    background-color: #000;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.newsletter-form button:hover {
    background-color: #1F2937;
}

/* Footer Bottom Section */
.footer-bottom-section {
    border-top: 1px solid #E5E7EB;
    padding: 24px 0;
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom-flex {
        flex-direction: row;
    }
}

.footer-bottom-flex p {
    font-size: 0.875rem;
    color: #4D4D4D;
    margin: 0;
}

.footer-bottom-flex strong {
    font-weight: 500;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icons img {
    height: 24px;
    /* h-6 */
}




/* ---- Products Section ---- */
.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

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

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

.product-card-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
}

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

.product-card:hover .product-card-image-wrap img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    display: none;
    /* hide from image - show in pricing only */
}

.product-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, transform 0.2s;
    color: #555;
}

.product-wishlist-btn:hover {
    background: #fff;
    transform: scale(1.1);
    color: #e53935;
}

.product-wishlist-btn.active {
    color: #e53935;
}

.product-wishlist-btn.active svg {
    fill: #e53935;
}

.product-share-btn {
    position: absolute;
    top: 54px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, transform 0.2s;
    color: #555;
}

.product-share-btn:hover {
    background: #fff;
    transform: scale(1.1);
    color: #2563eb;
}

.product-card-info {
    padding: 0 14px 16px;
    margin-top: 12px;
    color: #4D4D4D;
}

.product-card-category {
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
    margin: 0;
}

.product-card-title {
    font-size: 16px;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 0;
    color: #4D4D4D;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    min-height: 44px;
}

.product-card-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.badge-discount {
    background: #EF4444;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #4D4D4D;
}

.product-mrp {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.6;
    color: #949494;
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .products-section {
        padding: 20px 12px 40px;
    }
}

/* --- PRODUCT PAGE --- */
.product-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    color: #0f1111;
}

.breadcrumb {
    font-size: 12px;
    color: #565959;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #565959;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Layout */
.product-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.product-col-images {
    flex: 0 0 40%;
    position: sticky;
    top: 20px;
}

.product-col-details {
    flex: 1;
}

.product-col-action {
    flex: 0 0 250px;
}

/* Images */
.image-gallery {
    display: flex;
    gap: 15px;
}

.image-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

.thumbnail.active {
    border: 2px solid #e77600;
    box-shadow: 0 0 3px rgba(231, 118, 0, .5);
}

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

.image-main {
    flex: 1;
    position: relative;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

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

.image-main:hover {
    cursor: crosshair;
}

.magnify-lens {
    display: none;
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 5;
    border-radius: 0;
}

.magnify-result {
    display: none;
    position: absolute;
    top: 0;
    left: calc(100% + 15px);
    width: 450px;
    height: 450px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background-color: #fff;
    background-repeat: no-repeat;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    pointer-events: none;
}

.image-gallery {
    position: relative;
}

.share-icon-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: 1px solid #d5d9d9;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f1111;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.share-icon-btn:hover {
    background: #f7fafa;
}

/* Details */
.p-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 5px;
}

.p-brand {
    color: #007185;
    font-size: 14px;
}

.p-brand:hover {
    color: #c45500;
    text-decoration: underline;
}

.p-rating {
    margin-top: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffa41c;
}

.p-rating a {
    color: #007185;
}

.divider {
    border: 0;
    border-top: 1px solid #e7e7e7;
    margin: 15px 0;
}

.p-price-block {
    margin-bottom: 20px;
}

.p-save {
    color: #cc0c39;
    font-size: 14px;
    margin-bottom: 5px;
}

.p-price-row {
    display: flex;
    align-items: flex-start;
}

.p-price-symbol {
    font-size: 14px;
    margin-top: 5px;
}

.p-price-value {
    font-size: 28px;
    font-weight: 500;
}

.p-mrp-row {
    color: #565959;
    font-size: 14px;
    margin-top: 2px;
}

.strike {
    text-decoration: line-through;
}

.p-taxes {
    font-size: 14px;
    color: #565959;
    margin-top: 4px;
}

.p-options-block {
    margin-bottom: 20px;
}

.p-option-title {
    font-size: 14px;
    margin-bottom: 10px;
}

.p-variants-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-box {
    border: 1px solid #d5d9d9;
    border-radius: 4px;
    padding: 5px;
    width: 80px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.variant-box:hover {
    background: #f7fafa;
    border-color: #a6a6a6;
}

.variant-box.active {
    border: 1px solid #e77600;
    box-shadow: 0 0 3px rgba(231, 118, 0, .5);
    background: #fcf3ea;
}

.variant-box img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 5px;
}

.v-price {
    font-weight: 600;
    font-size: 14px;
}

.v-mrp {
    font-size: 12px;
    color: #565959;
    text-decoration: line-through;
}

.p-sizes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-box {
    border: 1px solid #d5d9d9;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    background: #fff;
    text-align: center;
}

.size-box:hover {
    background: #f7fafa;
    border-color: #a6a6a6;
}

.size-box.active {
    border: 1px solid #e77600;
    background: #fcf3ea;
    box-shadow: 0 0 3px rgba(231, 118, 0, .5);
}

.s-name {
    font-weight: 600;
    font-size: 14px;
}

.s-price {
    font-size: 14px;
    font-weight: 500;
}

.s-mrp {
    font-size: 12px;
    color: #565959;
    text-decoration: line-through;
}

.p-about {
    margin-top: 20px;
}

.p-about h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.p-about ul {
    padding-left: 20px;
}

.p-about li {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Action / Cart Box */
.action-box {
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
}

.a-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.a-delivery {
    font-size: 14px;
    color: #007185;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.a-stock {
    color: #007600;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.a-qty {
    margin-bottom: 15px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    background: #F0F2F2;
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #0f1111;
    font-size: 14px;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e3e6e6;
}

.qty-selector input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #D5D9D9;
    border-right: 1px solid #D5D9D9;
    padding: 8px 0;
    font-size: 14px;
    font-weight: bold;
    background: #fff;
    color: #0f1111;
    outline: none;
}

/* Hide number arrows */
.qty-selector input[type="number"]::-webkit-inner-spin-button,
.qty-selector input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-selector input[type="number"] {
    -moz-appearance: textfield;
}

.btn-cart,
.btn-buy,
.btn-wishlist {
    width: 100%;
    padding: 10px;
    border: 1px solid;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: 500;
}

.btn-cart {
    background: #FFD814;
    border-color: #FCD200;
    box-shadow: 0 2px 5px rgba(213, 217, 217, .5);
}

.btn-cart:hover {
    background: #F7CA00;
    border-color: #F2C200;
}

.btn-buy {
    background: #FFA41C;
    border-color: #FF8F00;
    box-shadow: 0 2px 5px rgba(213, 217, 217, .5);
}

.btn-buy:hover {
    background: #FA8900;
    border-color: #E37A00;
}

.btn-wishlist {
    background: #fff;
    border-color: #d5d9d9;
    box-shadow: 0 2px 5px rgba(213, 217, 217, .5);
    margin-top: 15px;
}

.btn-wishlist:hover {
    background: #f7fafa;
}

.a-merchant {
    margin-bottom: 15px;
    font-size: 12px;
}

.m-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.m-row span {
    color: #565959;
}

.a-secure {
    font-size: 14px;
    color: #007185;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Product Info Table */
.product-info-section {
    margin-top: 40px;
    border-top: 1px solid #e7e7e7;
    padding-top: 20px;
}

.product-info-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
}

.info-table th {
    background: #f3f3f3;
    padding: 10px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    width: 40%;
    border-bottom: 1px solid #e7e7e7;
}

.info-table td {
    padding: 10px 15px;
    font-size: 14px;
    border-bottom: 1px solid #e7e7e7;
}

.new-arrivals-section {
    margin-top: 40px;
    border-top: 1px solid #e7e7e7;
    padding-top: 20px;
}

.new-arrivals-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .product-layout {
        flex-direction: column;
    }

    .product-col-images {
        flex: none;
        width: 100%;
        position: static;
    }

    .product-col-details {
        flex: none;
        width: 100%;
    }

    .product-col-action {
        flex: none;
        width: 100%;
        margin-top: 20px;
    }

    .image-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .image-gallery {
        flex-direction: column-reverse;
    }
}

/* Added Amazon Components CSS */
.p-limited-deal {
    background: #CC0C39;
    color: #fff;
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 5px;
}

.p-features-row {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    overflow-x: auto;
    gap: 15px;
}

.f-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 60px;
    flex-shrink: 0;
}

.f-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 5px;
}

.f-item span {
    font-size: 11px;
    color: #007185;
    line-height: 1.2;
}

.fbt-container {
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
    background: #fff;
}

.fbt-container h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fbt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.fbt-item {
    width: 70px;
    height: 70px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    overflow: hidden;
}

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

.fbt-plus {
    font-size: 18px;
    color: #565959;
    font-weight: 500;
}

.fbt-action {
    flex: 1;
    min-width: 200px;
}

.fbt-total-wrap {
    font-size: 14px;
    margin-bottom: 10px;
}

.fbt-price-val {
    font-weight: 700;
    color: #B12704;
    font-size: 16px;
}

.btn-fbt-cart,
.btn-fbt-wishlist {
    width: 100%;
    padding: 8px;
    border: 1px solid;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 8px;
    font-weight: 500;
}

.btn-fbt-cart {
    background: #FFD814;
    border-color: #FCD200;
    box-shadow: 0 2px 5px rgba(213, 217, 217, .5);
}

.btn-fbt-wishlist {
    background: #fff;
    border-color: #d5d9d9;
    box-shadow: 0 2px 5px rgba(213, 217, 217, .5);
}

html {
    scroll-behavior: smooth;
}

/* Customer Reviews Section */
.reviews-section {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.reviews-layout {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.reviews-summary {
    flex: 1;
    min-width: 300px;
    max-width: 300px;
}

.reviews-global-score {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0f1111;
}

.reviews-global-stars {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #ffa41c;
}

.reviews-global-count {
    color: #565959;
    margin-bottom: 20px;
}

.reviews-divider {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.reviews-subtitle {
    font-size: 0.9rem;
    color: #565959;
    margin-bottom: 15px;
}

.btn-write-review {
    width: 100%;
    border: 1px solid #888c8c;
    background: #fff;
    color: #0f1111;
    box-shadow: 0 2px 5px rgba(15, 17, 17, .15);
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    padding: 10px;
    font-weight: bold;
}

.btn-write-review:hover {
    background: #f7fafa;
}

.write-review-form {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #0f1111;
}

.interactive-stars {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    user-select: none;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #888c8c;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-submit-review {
    width: 100%;
    background: #ffd814;
    color: #0f1111;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

.btn-submit-review:hover {
    background: #f7ca00;
}

.review-success-msg {
    display: none;
    color: #007185;
    margin-top: 10px;
    font-weight: bold;
}

.reviews-list {
    flex: 2;
    min-width: 300px;
}

.review-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.review-item:last-child {
    border-bottom: none;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e7e9ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #565959;
}

.review-author-name {
    font-weight: bold;
    color: #0f1111;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.review-stars-gold {
    color: #ffa41c;
}

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

.review-body {
    color: #0f1111;
    line-height: 1.5;
    margin-top: 5px;
}

.no-reviews-msg {
    color: #565959;
    font-style: italic;
}

.write-review-link {
    margin-left: 10px;
    color: #007185;
    text-decoration: none;
}

.write-review-link:hover {
    text-decoration: underline;
    color: #c45500;
}

/* Product Card Actions */
.product-card-image-wrap {
    position: relative;
}

.product-card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    /* Always visible */
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-actions {
    opacity: 1;
}

.product-card-actions .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-card-actions .action-btn:hover {
    background: #007185;
    color: white;
    border-color: #007185;
}


.action-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.a-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.a-delivery,
.a-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    margin-bottom: 15px;
}

.a-stock {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    border: none;
    background: #f5f5f5;
    padding: 10px 14px;
    cursor: pointer;
}

.qty-selector input {
    width: 50px;
    text-align: center;
    border: none;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-cart,
.btn-buy {
    padding: 13px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.btn-cart {
    background: #ffd814;
}

.btn-buy {
    background: #ff6b00;
    color: #fff;
}

.a-merchant {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.m-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.btn-wishlist {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
}

/* Account Dashboard */
.account-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 60vh;
    font-family: "Amazon Ember", Arial, sans-serif;
}

.account-container h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #0f1111;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px;
}

.account-card {
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0f1111;
    background: #fff;
    transition: box-shadow 0.1s ease-in-out, background-color 0.1s ease-in-out;
}

.account-card:hover {
    background-color: #f7fafa;
    box-shadow: 0 2px 5px 0 rgba(213, 217, 217, .5);
}

.account-card .card-icon {
    font-size: 45px;
    color: #007185;
    margin-right: 25px;
    width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-card .card-content {
    flex: 1;
}

.account-card .card-content h3 {
    margin: 0 0 4px 0;
    font-size: 17px;
    font-weight: 400;
    color: #0f1111;
}

.account-card .card-content p {
    margin: 0;
    font-size: 14px;
    color: #565959;
    line-height: 1.4;
}

.account-card.wallet-card .card-icon {
    color: #f3a847;
}

/* Coupon UI */
.p-coupon-block {
    margin-top: 12px;
    font-size: 14px;
    color: #0f1111;
    display: flex;
    align-items: flex-start;
    font-family: "Amazon Ember", Arial, sans-serif;
}

.p-coupon-badge {
    background-color: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 10px;
    line-height: 1;
    margin-top: 2px;
}

.p-coupon-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.p-coupon-inner input[type="checkbox"] {
    margin: 0 6px 0 0;
    width: 16px;
    height: 16px;
    accent-color: #007185;
    cursor: pointer;
}

.p-coupon-text {
    font-size: 14px;
    line-height: 20px;
    color: #0f1111;
    cursor: pointer;
}

.p-coupon-links {
    margin-left: 5px;
}

.p-coupon-links a {
    color: #007185;
    text-decoration: none;
    font-size: 13px;
    margin-left: 4px;
}

.p-coupon-links a:hover {
    text-decoration: underline;
    color: #c45500;
}

.flash-price {
    color: #cc0c39 !important;
    transition: color 0.5s;
}
/* Desktop Dropdown */
.account-dropdown {
    position: relative;
}
.account-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 4px;
    padding: 10px 0;
}
.account-dropdown:hover .account-dropdown-content {
    display: block;
}
.account-dropdown-content a {
    color: #0f1111;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}
.account-dropdown-content a:hover {
    background-color: #f3f3f3;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
}
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        height: 60px;
    }
    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #565959;
        font-size: 11px;
        flex: 1;
    }
    .mobile-bottom-nav a.active {
        color: #007185;
    }
    .mobile-bottom-nav a i {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .mobile-bottom-nav .share-circle-btn {
        background: #f3a847;
        color: #fff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        transform: translateY(-20px);
        flex: none;
    }
    .mobile-bottom-nav .share-circle-btn i {
        margin: 0;
        font-size: 22px;
    }
    /* Add padding to body so bottom nav doesn't hide content */
    body {
        padding-bottom: 70px;
    }
}
