/* Reset / box-sizing */
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

/* Fonts */
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/static/Inter_18pt-Regular.ttf") format("truetype");
    font-display: swap;
    /* Ensures fallback text shows immediately */
}

@font-face {
    font-family: "Montaga";
    src: url("../fonts/Montaga/Montaga-Regular.ttf") format("truetype");
    font-display: swap;
}

/* CSS Variables for easy font management */
:root {
    --font-global: 'Inter', Arial, sans-serif;
    --font-title: 'Montaga', Georgia, serif;
    --theme-primary: #530A1B;
    --theme-light: rgba(250, 245, 229, 1);
}

/* Global font */
body {
    font-family: var(--font-global);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Headings / Titles */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
    font-family: var(--font-title);
    font-weight: bold;
    color: var(--theme-primary);
    font-weight: 400;
}

h2 {
    font-size: 48px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 30px;
    }
}

p {
    padding: 0;
    margin: 0;
    font-size: 16px;
}

a {
    text-decoration: none;
}

.bg-theme-primary {
    background-color: var(--theme-primary);
}

.text-theme-primary {
    color: var(--theme-primary);
}

.bg-theme-light {
    background-color: var(--theme-light);
}

/* Top Nav Bar */
.top-nav-bar {
    background-color: #FAF9F6;
    padding: 10px;
    font-size: 12px;
}

@media(max-width: 768px){
  .top-nav-bar {
      background-color: #FAF9F6;
      padding: 10px;
      font-size: 8px;
  }
  .delivery-img{
      height: 20px;
  }
}
.top-mobile-wrapper,
.top-currency-wrapper {
    display: inline-block;
    background: #530A1B0D;
    padding: 3px 15px;
    border-radius: 30px;
    color: var(--theme-primary);
    font-weight: 300;
}

.top-mobile-wrapper a,
.top-currency-wrapper a {
    color: var(--theme-primary);
    font-weight: 300;
}

.top-nav-bar .dropdown-toggle::after {
    display: none;
}

.top-nav-bar .dropdown-toggle i {
    transition: transform 0.3s ease;
}

.top-nav-bar .dropdown-toggle[aria-expanded="false"] i {
    transform: rotate(0deg);
}

.top-nav-bar .dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.top-nav-bar .dropdown-menu a:focus {
    background-color: var(--theme-primary);
}

/* Header */

.main-header {
    padding: 10px 0;
    background-color: white;
    transition: box-shadow 0.3s ease;
}

.main-header.sticky-top {
    z-index: 800;
}

.main-header.is-sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-link {
    font-size: 14px;
    color: var(--theme-primary);
    text-decoration: none;
    line-height: 1;
    font-weight: 600;
}

.header-link i {
    font-size: 14px;
}

.logo span {
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--theme-primary);
    font-weight: 600;
}

.logo img {
    display: block;
    height: 40px;
}

.header-link img {
    height: 24px;
}

.header-link #cart-total {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 20px;
   width: 20px;
   border-radius: 50%;
   background-color: var(--theme-primary);
   color: white;
   font-size: 10px;
   padding: 5px;
}

#cart{
   position: relative;
}

#cart .cart-total-btn{
   position: absolute;
   top: -15px;
   right: -10px;
   outline: none;
   box-shadow: none;
   border: none;
   background-color: transparent;
}

@media (max-width: 768px) {
    .logo img {
       height: 30px;
    }
    .header-link .search-span{
       display: none;
    }
}

.header-link:hover.header-link img{
    transform: rotateZ(360deg);
    transition: .3s;
}

/* Offcanvas Menu */
.custom-close-btn {
    background-color: #fff;
    color: var(--theme-primary);
    border-radius: 50%;
    height: 15px;
    width: 15px;
    box-shadow: -2px 1px 10px 0px #00000040;

    /* override bootstrap */
    opacity: 1;
    padding: 0;
    margin: 0;

    /* remove default svg background */
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

/* Hover */
.custom-close-btn:hover {
    transition: .3s;
    background-color: var(--theme-primary);
    color: #fff;
}

.offcanvas-menu-title {
    color: var(--theme-primary);
    font-weight: 400;
    font-size: 30px;
}

.offcanvas-menu-links {
    color: var(--theme-primary);
    font-weight: 400;
}

.offcanvas-single-accordion {
    background-color: var(--theme-light);
    border-radius: 15px;
    margin-bottom: 10px;
}

.offcanvas-single-accordion .accordion-button {
    color: var(--theme-primary);
    background-color: transparent;
    box-shadow: none;
    font-size: 20px;
}

.offcanvas-single-accordion .accordion-button i {
    font-size: 14px;
    margin-left: 10px;
}

.offcanvas-single-accordion .accordion-button::after {
    background-image: none;
}

.offcanvas-single-accordion .accordion-item {
    border-radius: inherit;
    background-color: transparent;
}

.offcanvas-single-accordion .accordion-button i {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Default state (collapsed) */
.offcanvas-single-accordion .accordion-button i.fa-arrow-right {
    opacity: 1;
    transform: rotate(0deg);
}

.offcanvas-single-accordion .accordion-button i.fa-arrow-down {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Expanded state */
.offcanvas-single-accordion .accordion-button:not(.collapsed) i.fa-arrow-right {
    opacity: 0;
    transform: rotate(90deg);
}

.offcanvas-single-accordion .accordion-button:not(.collapsed) i.fa-arrow-down {
    opacity: 1;
    transform: rotate(0deg);
}

/* Offcanvas Search */
.offcanvas.offcanvas-top {
    height: fit-content;
    padding: 20px 20%;
}

.offcanvas-searchbar {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--theme-light);
    padding: 2px 20px;
    border-radius: 30px;
    height: 50px;
    width: 450px;
}

/* Mobile */
@media (max-width: 768px) {
    .offcanvas.offcanvas-top {
        padding: 20px 0;
    }

    .offcanvas-searchbar {
        width: 90%;
        margin: 0 20px;
    }
}

.offcanvas-searchbar .search-input {
    flex: 1;
}

.offcanvas-searchbar .search-input input {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    font-size: 14px;
    width: 100%;
}

.searchicon-wrap i {
    color: var(--theme-primary);
}

/* Footer */
footer {
    background-color: var(--theme-primary);
}

footer .footer-title {
    font-weight: 400;
    color: white;
}

footer h5 {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: white;
    position: relative;
    text-decoration: none;
}

footer ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

footer ul li a:hover::after {
    width: 100%;
}

.footer-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icons-wrapper .image-wrap {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1)
}

footer .footer-border {
    height: 2px;
    background-color: white;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--theme-light);
    --bs-tooltip-color: var(--theme-primary);
}

/* Product Section */
.view-more-btn {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(242, 237, 235, 1);
    color: var(--theme-primary);
    text-decoration: none;
    transition: .3s;
}

.view-more-btn:hover {
    background-color: var(--theme-primary);
    color: #fff;
    transition: .3s;
}

/* Card */
.product-card {
    position: relative;
    display: block;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    //padding: 5px 7px;
    //border: 1px solid transparent;
    //border-radius: 20px;
    transition: .3s;
}

.product-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* HOVER STATES */
/* .product-card:hover {
    transition: .3s;
    border:1px solid rgba(0, 0, 0, 0.08);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
} */
/* Info */
.product-info {
    margin-top: 10px;
}

@media(max-width: 768px){
  .product-info p{
      font-size: 12px;
  }
}

.product-price {
    font-size: 14px;
    font-weight: 400;
    color: rgba(43, 43, 43, 1);
}

.product-name {
    font-weight: 400;
    color: rgba(43, 43, 43, 1);
}

.product-slider {
    padding-bottom: 10px;
}

.product-slider .swiper-slide {
    height: auto;
}

.swiper-wrapper{
    margin: 10px 0 30px 0;
}

.swiper-button-next,
.swiper-button-prev {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

/* Arrow icon */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--theme-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Disabled state */
.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
    box-shadow: none;
}

.theme-container-fluid {
    width: 96%;
    margin: 0 2%;
    align-self: center;
}

/* Hero Slider */
.hero-slide {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/index_banner/banner.png);
    background-position: right;
    background-size: cover;
    pointer-events: none;
    /* IMPORTANT */
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.carousel-control-prev{
    left: -5px;
}

.carousel-control-next{
    right: -5px;
}
.carousel-control-prev i,
.carousel-control-next i{
    background-color: red;
    padding: 10px 13px;
    border-radius: 50%;
    background-color: white;
    color: var(--theme-primary) !important;
    box-shadow: 0px 0px 10px 0px rgba(217, 217, 217, 1);
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--theme-primary) !important;
    opacity: 1;
    box-shadow: 0px 4px 10px 0px rgba(217, 217, 217, 1);
}

@media (max-width: 425px) {
    .carousel-control-prev,
    .carousel-control-next {
        top: 45%;
        width: 30px;
        height: 30px;
    }
    .carousel-control-prev i, .carousel-control-next i{
        font-size: 12px;
        padding: 8px 11px;
    }
}
/*
.carousel-control-prev-icon,
.carousel-control-next-icon {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-primary);
    display: flex;
    justify-content: center;
    align-items: center;
} */

.hero-title {
    font-size: 60px;
    font-weight: 400;
    color: white;
}

.hero-btn {
    margin-top: 25px;
    background-color: white;
    border-radius: 30px;
    padding: 5px 20px;
    color: var(--theme-primary);
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    transition: .3s;
    background-color: var(--theme-light);
    color: black;
}

.item-wrapper {
    background-color: var(--theme-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 20px 0 20px;
}

/*.item-wrapper img {
    height: 100px;
}*/

@media(max-width: 768px){
  .item-wrapper img {
      height: 80px;
  }
}

.rounded-product-img img {
    height: 130px;
}

.rounded-product-img {
    border-radius: 50%;
    background-color: var(--theme-light);
    display: grid;
    place-items: center;
    padding: 20px;
}

.rounded-product-info {
    margin-top: 20px;
    text-align: center;
    color: black;
}

.square-product-img {
    background-color: var(--theme-light);
    border-radius: 20px;
}

.square-product-img img {
    height: 150px;
    padding: 10px 10px 0 10px;
}

.square-product-name {
    color: var(--theme-primary);
}

.breadcrumb-item a {
    text-decoration: none;
    color: black;
}

.pagination{
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 5px;
}

.pagination li{
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--theme-primary);
    display: grid;
    place-items: center;
    cursor: pointer;
}
.pagination li a{
    text-decoration: none;
    color: var(--theme-primary);
}
.pagination li:hover, .pagination li.active{
    background-color: var(--theme-primary);
    color: white;
}
.pagination li:hover > a {
    color: white;
    transition: .3s;
}

/* Product Details File Upload */
.file {
  position: relative;
  display: flex;
  align-items: center;
}

.file > input[type='file'] {
  display: none
}

.file > label {
  font-size: 14px;
  cursor: pointer;
  outline: 0;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 8px 30px;
  border-radius: 5px;
  transition: .3s;
  border: 1px solid var(--theme-primary);
  background-color: var(--theme-primary);
}

.file--upload > label:hover, .file--upload > label:active {
  border: 1px solid var(--theme-primary);
  background-color: white;
  color: var(--theme-primary);
}

/* Quantity Wrapper */
.quantity-wrapper{
    padding: 8px 30px;
    width: 100%;
    background-color: white;
    border: 1px solid var(--theme-primary);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--theme-primary);
}
.qty-control{
    outline: none;
    border: none;
    box-shadow: none;
    text-align: center;
    color: var(--theme-primary);
    font-weight: bold;
}
.quantity-wrapper i{
    cursor: pointer;
}
.btn-wrap{
    display: flex;
}
.btn-wrap button{
    flex: 1;
}
.cart-btn, .buynow-btn{
    text-align: center;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    background-color: var(--theme-primary);
    padding: 10px 20px;
    flex: 0 48%;
    outline: none;
    border: none;
}
.cart-btn-img{
    height: 20px;
    margin-right: 10px;
}
.cart-btn:hover , .buynow-btn:hover{
    transition: .3s;
    background-color: #961e3a;
}
.cart-btn:hover .cart-btn-img , .buynow-btn:hover .cart-btn-img{
    animation: cart-frames .3s forwards;
}
@keyframes cart-frames {
    0%{
        transform: rotate(10deg);
    }
    50%{
        transform: rotate(0deg);
    }
    50%{
        transform: translateX(10px);
    }
}
.product-details-wrapper textarea, .product-details-select select, .product-details-date select, .date{
    border: 1px solid var(--theme-primary);
    box-shadow: none;
    color: #5E5C5F;
    font-size: 14px;
}
.product-details-select,.product-details-date {
    position: relative;
}
.product-details-select i,.product-details-date i {
    font-size: 13px;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-primary);
    pointer-events: none;
}


/* ================= SLIDER ================= */

.product-slider-wrapper{
    display: flex;
    gap: 15px;
    width: 100%;
    max-height: 450px; /* limit max size */
}

/* Thumbnails */
.thumb-slider{
    width: 90px;
    height: 100%;
    flex-shrink: 0;
}

/* Main Image */
.main-slider{
    flex: 1;
    height: 100%;
    min-height: 350px; /* safety */
    max-height: 100%;
    overflow: hidden;
}

/* FIX: Allow multiple thumbnails */

.thumb-slider .swiper-slide{
    height: auto !important;
    display: flex;
    align-items: center;
}
.thumb-slider  .swiper-wrapper{
    max-height: 450px;
}
/* Control thumb image size */
.thumb-slider img{
    max-height: 80px;
    object-fit: cover;
    cursor: pointer;
    object-fit: cover;
}


/* Images */

.main-slider img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ================= MOBILE ================= */

@media(max-width:768px){

    .product-slider-wrapper{
        flex-direction: column;
        max-height: unset;
    }

    /* Main first */
    .main-slider{
        width: 100%;
        height: 280px;
        min-height: auto;
        max-height: none;
        order: 1;
    }

    /* Thumbs bottom */
    .thumb-slider{
        width: 100%;
        height: 100px;
        order: 2;
    }

}
#product-bottom-nav .nav-tabs .nav-link{
    border: none;
    color: grey;
    border-bottom: 2px solid transparent;
}
#product-bottom-nav .nav-tabs  .nav-link.active{
    border-bottom: 2px solid black;
    color: black;
}
.cart-product-wrapper{
    padding: 10px;
    border-radius: 20px;
    background-color: white;
    display: flex;
    gap: 20px;
}
.cart-quantity-wrapper{
    border: 1px solid rgba(217, 217, 217, 1);
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 30px;
}
.cart-quantity-wrapper #qty{
    width: 100px;
    background-color: transparent;
}
.cart-quantity-wrapper #plus, .cart-quantity-wrapper #minus{
    cursor: pointer;
}
.cart-qty-price-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
@media(max-width: 768px){
    .cart-qty-price-wrapper{
       display: block;
    }
}
.prod-details{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
.cart-summary-wrapper{
    padding: 10px;
    background-color: white;
    border-radius: 20px;
}
.summary-icon{
    height: 30px;
}
.totals-wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.cart-checkout-btn{
    margin-top: 20px;
    background-color: var(--theme-primary);
    padding: 10px 20px;
    width: 100%;
    border-radius: 20px;
    border: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Compact Checkbox Pills */

.option-checkbox-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
}

/* Hide default checkbox */
.option-pill input {
    display: none;
}

/* Small image */
.option-pill img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

/* Hover */
.option-pill:hover {
    border-color: #007bff;
}

/* Selected */
.option-pill input:checked + img,
.option-pill input:checked + .option-text,
.option-pill input:checked ~ * {
    color: #007bff;
}

.option-pill input:checked ~ .option-text {
    font-weight: 600;
}

.option-pill:has(input:checked) {
    background: #f0f8ff;
    border-color: #007bff;
}

.sub-cat-wrapper{
   padding: 10px;
   margin: 5px;
   border: 1px solid rgba(0,0,0,0.175);
   border-radius: 10px;
   text-decoration: none;
   text-align: center;
   cursor: pointer;
   transition: .3s;
}

.sub-cat-wrapper a{
   color: var(--theme-primary);
}

.sub-cat-wrapper:hover{
   transition: .3s;
   background-color: var(--theme-primary);
}

.sub-cat-wrapper:hover.sub-cat-wrapper a{
   color: white;
}

.cart-empty-btn{
   background-color: var(--theme-primary);
   color: white;
}

.cart-empty-btn:hover{
   background-color: var(--theme-light);
   color: var(--theme-primary);
}

.swiper-scrollbar {
    height: 2px !important;
    background: var(--theme-light);
    border-radius: 2px;
    margin-top: 30px;
}

.swiper-scrollbar-drag {
    height: 2px;
    background: var(--theme-primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.explore-unique-items{
    background-color: var(--theme-light);
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    width: 140px;
}

@media(max-width: 768px){
    .explore-unique-items{
        height: 90px;
        width: 90px;
    }
    .explore-unique-items img{
        height: 60px;
    }
}

.shop-by-occasions{
    height: 170px;
    width: 170px;
    background: rgba(250, 245, 229, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-by-occasions img{
    height: 120px;
}

@media(max-width: 768px){
    .shop-by-occasions{
        height: 100px;
        width: 100px;
    }
    .shop-by-occasions img{
        height: 70px;
    }
}

.gift-for-everyone{
    width: 170px;
    height: 170px;
    background: rgba(250, 245, 229, 1);
    border-radius: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: end;
}

.gift-for-everyone img{
    height: 150px;
}

.explore-unique-items-p,.shop-by-occasions-p,.gift-for-everyone-p{
    color: rgba(43, 43, 43, 1);
    font-family: var(--font-global) !important;
    font-weight: 600;
}
@media(max-width: 768px){
    .gift-for-everyone{
        height: 90px;
        width: 90px;
    }
    .gift-for-everyone img{
        height: 70px;
    }
    .explore-unique-items-p,.shop-by-occasions-p,.gift-for-everyone-p{
        font-size: 12px;
    }
}

/* ── Shared image styles (never need to repeat these) ── */
#heroSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

/* ── Base: Mobile S (≤425px) ── */
#heroSlider .carousel-item {
    height: 160px;
}

/* ── Mobile L (≥426px) ── */
@media (min-width: 426px) {
    #heroSlider .carousel-item {
        height: 250px;
    }
}

/* ── Tablet (≥768px) ── */
@media (min-width: 768px) {
    #heroSlider .carousel-item {
        height: 310px;
    }
}

/* ── Laptop (≥1024px) ── */
/*@media (min-width: 1024px) {
    #heroSlider .carousel-item {
        height: 500px;
    }
}*/

/* ── Laptop L (≥1440px) ── */
@media (min-width: 1440px) {
    #heroSlider .carousel-item {
        height: 750px;
    }
}

/* ── 4K / Ultra-wide (≥2560px) ── */
@media (min-width: 2560px) {
    #heroSlider .carousel-item {
        height: 1000px;
    }
}

.category-slider{
    padding-bottom: 10px;
}

#product-bottom-container .nav-link{
    color: rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
}

#product-bottom-container .nav-link.active{
    color: var(--theme-primary);
    border-bottom: 2px solid var(--theme-primary);
}

.btn-review {
    text-align: center;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    background-color: var(--theme-primary);
    padding: 10px 20px;
    flex: 0 48%;
    outline: none;
    border: none;
}

.btn-review:hover {
    transition: .3s;
    background-color: #961e3a;
    color: white;
}