/* Awesome Mall - Modern "Franko-like" Layout */
:root {
    --am-primary: #E8663D;
    /* Franko Green */
    --am-secondary: #dc3545;
    --am-bg: #ffffff;
    --am-white: #ffffff;
    --am-red: #d32f2f;
}

body {
    background-color: var(--am-bg) !important;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Sticky Header Wrapper - Enforced with !important */
.header-style-1 {
    position: sticky !important;
    top: 0 !important;
    z-index: 1100 !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

/* Global Spacing Fixes (Bootstrap/Main.css overrides) */
.body-content.outer-top-xs {
    margin-top: 0 !important;
}

/* Prevent horizontal scroll on content area (not on body to avoid breaking sticky) */
.body-content {
    overflow-x: clip;
}

.breadcrumb {
    margin-top: 5px !important;
    margin-bottom: 0 !important;
    padding: 10px 0 !important;
}

.breadcrumb li {
    font-size: 12px;
}

/* ============================
   Wrapper & Containers
   ============================ */
.awesome-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ============================
   Hero Section (3 Columns)
   ============================ */
.hero-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 2px;
    /* Reduced from 15px */
    margin-bottom: 20px;
    height: 380px;
    /* Fixed height for consistency */
}

/* Col 1: Sidebar */
.hero-sidebar {
    width: 230px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    overflow-y: auto;
    padding: 10px 0;
    border: 1px solid rgba(0,0,0,0.03);
}

.hero-sidebar .nav-link {
    display: flex;
    align-items: center;
    color: #282828;
    font-size: 13px;
    /* Slightly larger for Franko */
    padding: 10px 12px;
    text-transform: capitalize;
    border-bottom: 1px solid #f9f9f9;
}

.hero-sidebar .nav-link:hover {
    color: var(--am-primary);
    background-color: #f0fff4;
    /* Light green hover */
    font-weight: 500;
}

.hero-sidebar .nav-link i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
    font-size: 14px;
    color: var(--am-primary);
}

/* Col 2: Slider */
.hero-slider {
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.hero-slider,
.hero-slider .owl-carousel,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .item {
    height: 380px !important;
}

.hero-slider img {
    height: 380px !important;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    background-color: #fcfcfc;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: rgba(0,0,0,0.2);
    display: block;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.hero-slider .owl-dots .owl-dot.active span {
    background: var(--am-primary);
}

/* Col 3: Right CTA */
.hero-right {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    gap: 15px;
}

.cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(232, 102, 61, 0.15);
    border-color: var(--am-primary);
}

.cta-box .cta-icon {
    font-size: 24px;
    color: #282828;
    width: 40px;
    text-align: center;
}

.cta-box .cta-text h6 {
    font-size: 12px;
    margin: 0;
    font-weight: 700;
    color: #282828;
    text-transform: uppercase;
}

.cta-box .cta-text p {
    font-size: 11px;
    margin: 0;
    color: #757575;
}

/* ============================
   Flash Sales Section
   ============================ */
.flash-sales-container {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.flash-header {
    background: #ffffff;
    /* Franko usually has white headers vs Jumia Red */
    border-bottom: 2px solid var(--am-primary);
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.flash-header .title {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    color: var(--am-primary);
}

.flash-header .timer {
    font-weight: 500;
    font-size: 16px;
    color: var(--am-secondary);
}

.flash-header .see-all {
    color: var(--am-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.flash-products {
    padding: 10px;
}

/* Home product rows with 1–2 items: normal card width (not full-width Owl slide) */
.home-owl-carousel.is-static-product-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-owl-carousel.is-static-product-row > .item {
    flex: 0 0 auto;
    width: 200px;
    max-width: calc(50% - 6px);
}

@media (max-width: 575.98px) {
    .home-owl-carousel.is-static-product-row > .item {
        width: calc(50% - 6px);
        max-width: none;
    }
}

/* Standard Product Card */
.am-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    text-align: left;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.am-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
    z-index: 2;
}

.am-card .img-wrap {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.am-card .img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.am-card .p-name {
    font-size: 13px;
    color: #282828;
    margin-bottom: 4px;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    font-weight: 400;
}

.am-card .p-price {
    font-size: 16px;
    font-weight: 700;
    color: #282828;
}

.am-card .p-old-price {
    font-size: 12px;
    color: #757575;
    text-decoration: line-through;
    margin-left: 5px;
}

.am-card .discount-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--am-secondary), #f43f5e);
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.3);
}

.am-card .stock-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.am-card .stock-fill {
    height: 100%;
    background: var(--am-primary);
    width: 20%;
    /* dynamic */
}

.am-card .stock-text {
    font-size: 10px;
    color: #757575;
    margin-top: 2px;
}

/* ============================
   Quick Links Grid
   ============================ */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.quick-item {
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
    border: 1px solid #eee;
}

.quick-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--am-primary);
}

.quick-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    object-fit: contain;
}

.quick-item span {
    display: block;
    font-size: 12px;
    color: #282828;
    font-weight: 500;
    line-height: 1.2;
}


/* ============================
   Generic Section Header
   ============================ */
.section-header-plain {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,250,252,1) 100%);
    border-radius: 12px 12px 0 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-size: 18px;
    font-weight: 700;
    color: var(--am-text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.white-box {
    background: #fff;
    border-radius: 12px;
    /* padding: 10px; */
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 992px) {

    .hero-sidebar,
    .hero-right {
        display: none;
    }

    .hero-wrapper {
        height: auto;
    }

    .hero-slider {
        height: 250px;
    }

    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================
   Jumia-Style Footer (Franko Variant)
   ======================== */

/* Footer Reset */
#footer {
    background-color: #1a1a1a;
    color: #c7c7cd;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding-top: 0;
    margin-top: 20px;
}

/* Newsletter Section */
.footer-newsletter {
    background-color: var(--am-primary);
    /* Franko uses primary color for newsletter usually */
    padding: 20px 0;
    color: #fff;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.am-logo-small {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.am-logo-small span {
    color: #fff;
    /* White span on Green BG */
}

.newsletter-content h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.newsletter-content p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

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

.newsletter-input-group {
    display: flex;
}

.newsletter-input-group .input-icon {
    background: #fff;
    color: var(--am-primary);
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 4px 0 0 4px;
}

.newsletter-input-group input {
    border: none;
    padding: 10px;
    width: 250px;
    outline: none;
    border-radius: 0 4px 4px 0;
}

.btn-subscribe {
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background: #fff;
    color: var(--am-primary);
    border-color: #fff;
}

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

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

.app-icon {
    font-size: 24px;
    color: #fff;
}

.app-text {
    font-size: 10px;
    line-height: 1.2;
}

.app-text strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
}

.apps-buttons img {
    height: 30px;
    margin-right: 5px;
    cursor: pointer;
}

/* Footer Links Section */
.footer-links {
    padding: 40px 0;
    background-color: #222;
    border-bottom: 1px solid #333;
}

.footer-col {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

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

.footer-list a {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: #fff;
    text-decoration: none;
    margin-left: 5px;
    /* Slight movement effect */
}

/* Social & Payment */
.footer-social-payment {
    padding: 20px 0;
    border-bottom: 1px solid #333;
    background: #1a1a1a;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    transition: color 0.2s;
}

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

.payment-icons img {
    height: 20px;
    margin-right: 15px;
    opacity: 0.8;
    background: #fff;
    padding: 2px;
    border-radius: 2px;
}

/* Brands List */
.footer-brands {
    padding: 20px 0;
    font-size: 11px;
    color: #999;
}

.brand-col h6 {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.brand-list {
    margin-bottom: 10px;
}

.brand-list a {
    color: #999;
    margin-right: 5px;
}

.brand-list a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom-logos img {
    height: 20px;
    margin: 0 10px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .newsletter-form {
        width: 100%;
        flex-wrap: wrap;
    }

    .newsletter-input-group input {
        width: 100%;
        flex: 1;
    }
}

/* ============================
   Product Details Page
   ============================ */
.single-product-container {
    background: #fff;
    padding: 30px 20px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.product-gallery-holder {
    position: sticky;
    top: 20px;
}

.product-info-column {
    padding-left: 30px;
}

.p-name-main {
    font-size: 26px;
    font-weight: 700;
    color: #282828;
    margin-bottom: 15px;
    line-height: 1.2;
}

.p-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.p-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fbbc04;
}

.p-brand-link {
    color: var(--am-primary);
    font-weight: 500;
    text-decoration: underline;
}

.p-availability {
    font-weight: 600;
}

.p-availability.in-stock {
    color: #10b981;
}

.p-availability.out-of-stock {
    color: #ef4444;
}

.p-price-row {
    margin-bottom: 25px;
    padding: 20px;
    background: #fcfcfc;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.p-current-price {
    font-size: 32px;
    font-weight: 800;
    color: #282828;
}

.p-old-price-main {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.p-discount-pill {
    background: var(--am-secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Buy Box Actions */
.buy-box-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.qty-btn:hover {
    background: #f5f5f5;
    color: var(--am-primary);
}

.qty-input-main {
    width: 60px;
    height: 45px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    outline: none;
}

.btn-add-to-cart-large {
    background: #00203F;
    color: #fff !important;
    border: none;
    height: 45px;
    /* Matched to qty buttons */
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    flex: 1;
    /* Take remaining space */
    min-width: 200px;
}

.btn-add-to-cart-large:hover {
    background: #00152b;
    transform: translateY(-2px);
}

.buy-box-secondary-btns {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-icon-round {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    transition: all 0.2s;
    background: #fff;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-icon-round:hover {
    border-color: var(--am-primary);
    color: var(--am-primary);
}

/* Trust Signals Sidebar Block */
.trust-block {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #555;
    text-decoration: none !important;
}

.trust-item i {
    font-size: 16px;
    color: var(--am-primary);
    width: 20px;
    text-align: center;
}

.call-to-order {
    background: #fff8f0;
    padding: 15px;
    border-radius: 4px;
    border: 1px dashed var(--am-primary);
    margin-top: 20px;
}

.call-to-order h6 {
    font-size: 13px;
    margin-bottom: 5px;
    color: #7d4d12;
}

.call-numbers {
    font-size: 18px;
    font-weight: 800;
    color: var(--am-primary);
}

/* Accordions for Details */
.am-accordion-details {
    margin-top: 40px;
}

.am-accordion-details .card {
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    background: #fff !important;
}

.am-accordion-details .card-header {
    background: #fff !important;
    padding: 15px 0 !important;
    cursor: pointer;
    border: none;
}

.am-accordion-details .card-header h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #282828;
    width: 100%;
}

.am-accordion-details .card-header .btn-link {
    text-decoration: none;
    color: #282828;
    padding: 0;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.am-accordion-details .card-header .btn-link:after {
    content: "\f107";
    font-family: FontAwesome;
    transition: transform 0.2s;
}

.am-accordion-details .card-header .btn-link:not(.collapsed):after {
    transform: rotate(180deg);
}

.am-accordion-details .card-body {
    padding: 20px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Related Products Header */
.alternative-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 30px;
}

.alternative-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #282828;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .product-info-column {
        padding-left: 0;
        margin-top: 30px;
    }

    .p-name-main {
        font-size: 20px;
    }
}

/* Product Gallery Alignment & Fixes */
.single-product-gallery-item {
    background: #fff;
    display: flex !important;
    /* Force flex for alignment */
    align-items: center;
    justify-content: center;
    height: 380px;
    /* Reduced height as requested */
    max-width: 450px;
    /* Make it a bit narrower/smaller */
    margin: 0 auto 15px auto;
    /* Center it */
    overflow: hidden;
    border: 1px solid #eee;
    /* Slimrer border */
    border-radius: 8px;
    position: relative;
    /* For ribbon placement */
    background: #fff url('../../assets/images/loading.gif') center no-repeat;
    background-size: 40px;
    /* Distinct loading icon */
}

.single-product-gallery-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

.gallery-thumbs {
    margin-top: 15px;
}

.horizontal-thumb {
    display: block;
    border: 2px solid #eee;
    border-radius: 6px;
    padding: 5px;
    transition: all 0.2s;
    background: #fff;
    height: 90px;
    width: 90px;
    margin: 0 auto;
    overflow: hidden;
    cursor: pointer;
}

.horizontal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.horizontal-thumb.active {
    border-color: var(--am-primary);
    box-shadow: 0 0 0 1px var(--am-primary);
}

.horizontal-thumb:hover {
    border-color: var(--am-primary);
}

#owl-single-product-thumbnails .item {
    padding: 5px;
}

/* Diagonal Ribbon for "New!" items */
.ribbon-new {
    position: absolute;
    top: 10px;
    /* Inside the border */
    left: 10px;
    /* Inside the border */
    width: 75px;
    height: 75px;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    /* Don't interfere with clicks */
}

.ribbon-new span {
    position: absolute;
    display: block;
    width: 100px;
    padding: 2px 0;
    background-color: var(--am-primary);
    /* Use primary red-orange */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #fff;
    font: 700 10px 'Inter', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-align: center;
    left: -20px;
    top: 15px;
    transform: rotate(-45deg);
}

/* Accordion & Reviews Refinement */
.am-accordion-details .accordion-item {
    border: 1px solid #eee !important;
    /* Slim border */
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 20px !important;
    box-shadow: none !important;
    /* Explicitly remove any shadow */
}

.am-accordion-details .accordion-body {
    padding: 25px 30px !important;
    /* Keep content away from edges */
}

.am-accordion-details .accordion-button {
    font-size: 16px;
    padding: 20px;
    background: #fff !important;
}

.am-accordion-details .accordion-button:not(.collapsed) {
    color: var(--am-primary) !important;
    border-bottom: 1px solid #f9f9f9;
}

.am-accordion-details .accordion-button i {
    width: 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    /* Slimter border */
    transition: all 0.3s ease;
}

/* No color change on hover as requested */

.avatar-circle {
    width: 45px;
    height: 45px;
    background: var(--am-primary-light);
    color: var(--am-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.write-review-container {
    background: #fafafa;
    padding: 30px;
    /* Increased padding as requested */
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #eee;
    box-shadow: none !important;
}

.write-review-container .review-form-control {
    background-color: #fff;
    border: 1px solid #cbd5e1;
    color: #1f2937;
    border-radius: 8px;
}

.write-review-container .review-form-control::placeholder {
    color: #94a3b8;
}

.write-review-container .review-form-control:focus {
    background-color: #fff;
    border-color: var(--am-primary);
    box-shadow: 0 0 0 3px rgba(232, 102, 61, 0.12);
    color: #1f2937;
}

.rating-entry select {
    cursor: pointer;
    min-width: 100px;
}

.form-control,
.form-select {
    padding: 10px 15px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(255, 156, 0, 0.1);
    border-color: var(--am-primary);
    background-color: #fff;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 20px;
    color: #ddd;
    transition: color 0.2s;
    margin: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
    color: #fbbc04;
}

/* Accordion Headings Refinement */
.am-accordion-details .card-header .accordion-button {
    font-size: 17px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.am-accordion-details .card-header .accordion-button:hover {
    /* No color change on hover as requested */
    background-color: #fff !important;
}

.tracking-wider {
    letter-spacing: 0.05em;
}