.collection-card {
    display: block;
    text-decoration: none;
    color: #222;
    text-align: center;
}

.collection-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

.collection-card h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.carousel-img {
    height: 550px;
    object-fit: cover;
}

.intro-banner-wrap {
    overflow: hidden;
    border-radius: 10px;
}

/* Product cards + related cards */
.card-product-grid,
.related-card {
    text-align: center;
    padding: 10px;
    transition: 0.3s;
}

.card-product-grid {
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-product-grid .img-wrap {
    display: block;
    height: auto;
    padding: 0;
}

.card-product-grid .img-wrap img,
.related-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}

.card-product-grid .info-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    text-align: center;
    padding: 14px 10px 8px;
}

.card-product-grid .fix-height {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: auto;
    justify-content: flex-start;
    overflow: visible;
}

.card-product-grid .title,
.related-title,
.related-card h5 {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    min-height: 34px;
    margin: 0 0 8px;
    text-align: center;
}

.card-product-grid .price-wrap {
    min-height: 24px;
    margin-top: 0 !important;
    margin-bottom: 12px;
}

.card-product-grid .price,
.related-price,
.related-card p {
    font-size: 16px;
    font-weight: 600;
    color: #777;
}

.card-product-grid .btn,
.related-card .btn,
.related-btn {
    width: 100%;
    border: 1px solid #333;
    color: #333;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: auto;
    padding: 9px 0;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .card-product-grid .img-wrap img {
        height: 210px;
    }

    .card-product-grid .info-wrap {
        padding-top: 12px;
    }
}

.card-product-grid .btn:hover,
.related-card .btn:hover,
.related-btn:hover {
    background: #c49b63;
    border-color: #c49b63;
    color: white;
}

/* Product detail gallery */
.gallery-wrap {
    width: 100%;
}

.main-image-box {
    width: 100%;
    overflow: hidden;
}

.main-product-image {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.2);
    cursor: zoom-in;
}

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
    z-index: 2000;
}

.image-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3em;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5em;
    line-height: 1;
    padding: 0.2em 0.3em;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.lightbox-arrow:hover {
    color: #c49b63;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.thumb-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.thumb-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #eee;
}

.thumb-img:hover {
    border: 3px solid #c49b63;
}

.img-big-wrap {
    width: 100% !important;
    max-width: none !important;
}

.img-big-wrap img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
}

/* You may also like */
.you-may-like {
    max-width: 1140px;
    margin: 60px auto;
}

.you-may-like h3,
.reviews-section h3 {
    letter-spacing: 6px;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

/* Product detail text */
.content-body .title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

.content-body .price {
    font-size: 24px;
    font-weight: 700;
    color: #777;
}

.content-body p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.item-option-select h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.content-body .btn {
    border: 1px solid #333;
    color: #333;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 12px 25px;
    text-transform: uppercase;
}

.content-body .btn:hover {
    background: #c49b63;
    border-color: #c49b63;
    color: white;
}

/* Reviews */
.reviews-section {
    margin-top: 40px;
    margin-bottom: 60px;
}

.review-box {
    padding: 25px;
}

.section-heading h3 {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .carousel-img {
        height: 250px;
    }

    .main-image-box {
        height: auto;
    }

    .thumb-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .thumb-img {
        height: 120px;
    }
}
.product-accordion {
    margin-top: 30px;
}

.accordion-item {
    border-top: 1px solid #ddd;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;

    text-decoration: none;
    color: #111;

    font-size: 14px;
    font-family: "Josefin Sans", Arial, sans-serif;
    font-weight: 300;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.accordion-title:hover {
    color: #111;
    text-decoration: none;
}

.accordion-arrow {
    font-size: 20px;
    font-weight: 300;
}

.accordion-item p {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Header mini cart */
.mini-cart-wrap {
    position: relative;
}

.mini-cart-wrap::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 30px);
    height: 14px;
}

.mini-cart-toggle {
    display: block;
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1050;
    width: 380px;
    max-width: calc(100vw - 30px);
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.mini-cart-wrap:hover .mini-cart-dropdown,
.mini-cart-wrap:focus-within .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-header {
    padding: 18px 20px 12px;
    text-align: center;
}

.mini-cart-header h5 {
    margin: 0;
    color: #3167eb;
    font-size: 24px;
    font-weight: 500;
}

.mini-cart-items {
    max-height: 360px;
    overflow-y: auto;
    padding: 0 12px;
}

.mini-cart-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #f7f7f7;
    border-bottom: 8px solid #fff;
}

.mini-cart-img {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    background: #fff;
}

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

.mini-cart-info {
    min-width: 0;
    flex: 1;
}

.mini-cart-name {
    display: block;
    color: #333;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.mini-cart-name:hover {
    color: #3167eb;
    text-decoration: none;
}

.mini-cart-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #777;
    font-size: 15px;
}

.mini-cart-meta strong {
    color: #666;
    white-space: nowrap;
}

.mini-cart-footer {
    padding: 14px 20px 18px;
    border-top: 1px solid #eee;
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #111;
    font-size: 18px;
}

.mini-cart-subtotal strong {
    font-weight: 700;
}

.mini-cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.mini-cart-actions .btn {
    flex: 1;
}

.mini-cart-empty {
    padding: 20px;
    text-align: center;
}

.mini-cart-empty p {
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .mini-cart-dropdown {
        display: none;
    }
}

/* Checkout saved billing/shipping summary */
.saved-checkout-summary {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
    padding-bottom: 22px;
}

.saved-checkout-summary h5 {
    color: #111;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.saved-checkout-summary p {
    color: #777;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 8px;
}

.saved-checkout-summary .btn-link {
    color: #1f5f96;
    font-size: 15px;
    text-decoration: none;
}

.saved-checkout-summary .btn-link:hover {
    color: #16466f;
    text-decoration: underline;
}

.flavor-status {
    background: #f4f4f4;
    border-radius: 6px;
    color: #555;
    font-size: 14px;
    margin-bottom: 14px;
    padding: 10px 14px;
}

.flavor-status.flavor-status-error {
    background: #fdecea;
    border: 1px solid #f5c2c0;
    color: #b02a20;
    font-weight: bold;
}

.flavor-grid {
    display: grid;
    gap: 18px 14px;
    grid-template-columns: repeat(2, 1fr);
}

.flavor-option {
    text-align: center;
}

.flavor-img {
    border-radius: 8px;
    height: 90px;
    object-fit: cover;
    width: 100%;
}

.flavor-placeholder {
    align-items: center;
    background: #f0f0f0;
    color: #999;
    display: flex;
    font-size: 12px;
    justify-content: center;
}

.flavor-name {
    color: #c49b63;
    font-size: 13px;
    margin: 8px 0 6px;
}

.flavor-qty {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    width: 64px
}
