/*
--------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     : piyush Tapaniya | +91 83060 05795                                                       * 
* Support    : piyush.tapaniya90@gmail.com                                                             * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/

/*================================================
[  Table of contents  ]
================================================== 
:: general css Style
   :: google font
   :: basic style     
   :: headings
   :: button style
   :: helper classes 
   :: section title
   :: box border
   :: custome class 
:: scrollbar CSS
:: back to top CSS
:: loader CSS
:: animations 
==================================================
[ End table content ]
================================================*/

@charset "UTF-8";
/*================================================
    :: general css Style
==================================================*/

/* :: google font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color: #D82636;
    --secondary-color: rgba(243, 227, 213, 0.93);
} 


/* :: basic style  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
} 

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background-color: #EFDFBB;
    color: #000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 53px;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Roboto", sans-serif;
    color: #000;
}

p {
    font-size: 16px; 
    color: #787575;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}


ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none;
    outline: 0;
}

iframe {
    width: 100%;
    border: 0px;
}

/* :: Form */
textarea {
    resize: none;
}

/* select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
} 
/* :: headings */

/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1,
    .banner-content h1 {
        font-size: 52px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1,
    .banner-content h1 {
        font-size: 42px !important;
    }
}

@media only screen and (max-width: 767px) {
    h1,
    .banner-content h1 {
        font-size: 42px !important;
    }
}

@media only screen and (max-width: 576px) {
    h1,
    .banner-content h1 {
        font-size: 25px !important;
    }
}

/* :: Font h2 */
h2 {
    font-size: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2,
    .banner-content h2 {
        font-size: 42px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2,
    .banner-content h2  {
        font-size: 32px !important;
    }
}

@media only screen and (max-width: 767px) {
    h2,
    .banner-content h2  {
        font-size: 32px !important; 
    }
}
@media only screen and (max-width: 576px) { 
    .banner-content h2  {
        font-size: 22px !important; 
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3,
    .banner-content h3  {
        font-size: 28px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3,
    .banner-content h3 {
        font-size: 26px !important;
    }
}

@media only screen and (max-width: 767px) {
    h3,
    .banner-content h3 {
        font-size: 24px !important;
    }
}
@media only screen and (max-width: 576px) { 
    .banner-content h3  {
        font-size: 18px !important; 
    }
}

/* :: Font h4 */
h4 {
    font-size: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}

/* :: Font h5 */
h5 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

/* :: Font h6 */
h6 {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dots button {
    height: 10px;
    width: 10px;
    background: #fff !important;
    display: inline-block;
    margin: 0 4px;
    border-radius: 15px;
}
.owl-dots button.active{
    background: var(--primary-color) !important;
}


 
 

/* :: helper */
.text-gray {
    color: #000 !important;
}

.text-white {
    color: #ffffff !important;
}


.text-black {
    color: #000000 !important;
}

.primary-color {
    color: var(--primary-color) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-color {
    background-color: var(--primary-color) !important;
}

.bg-01 {
    background-color: var(--secondary-color) !important;
}

.bg-02 {
    background-color: #f1f1f1 !important;
}

.text-secondary{
    color: var(--secondary-color) !important;
}

.bg-gradient-1{
    background-image: var(--bg-gradient-1);
} 
.bg-gradient-text {
    background-image: var(--bg-gradient-text);
    background-clip: text; 
    color: transparent;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
}

/* :: form */
.form-control {
    height: 46px;
}

.form-control:focus {
    background-color: transparent;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 25px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 25px 25px;
    color: #000;
    height: 185px;
    background: transparent;
    color: #ffffff;
    resize: none;
    border-radius: 0px;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

label.error {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
}

input.error,
select.error,
textarea.error {
    border-color: #ff0000 !important;
}

/*radio button stype*/ 
[type="radio"]:checked,
[type="radio"]:not(:checked) {position: absolute; left: -9999px; }
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {position: relative; padding-left: 24px; cursor: pointer; display: inline-block;}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {content: ''; position: absolute; left: 1px; top: 4px; width: 18px; height: 18px; border: 1px solid #c1c1c1; border-radius: 100%; background: #fff; }
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {content: ''; width: 12px; height: 12px; background: var(--primary-color); position: absolute; top: 7px; left: 4px; border-radius: 100%; -webkit-transition: all 0.2s ease; transition: all 0.2s ease; }
[type="radio"]:not(:checked) + label:after {opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
[type="radio"]:checked + label:after {opacity: 1; -webkit-transform: scale(1); transform: scale(1); }


/*-------------------------------------------------
:: button 
-------------------------------------------------*/
 
.btns {
    background-color: var(--primary-color);
    padding: 10px 25px;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600; 
    border: none;
}
 
.btns:hover,
.btns:focus{
    color: #fff;
}

.btns-secondary{
    padding: 14px 20px;
    border-radius: 7px;
    background-color: var(--secondary-color); 
}

/*-------------------------------------------------
:: main-area
-------------------------------------------------*/
.main-area{
    position: relative;
    background-repeat: repeat;
    background-size: cover;
    background-position: top;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color); 
}

/*-------------------------------------------------
:: banner-area
-------------------------------------------------*/
.banner-area {
    position: relative;
    z-index: 1;  
}

.m-banner{
    display: none !important;
}

.banner-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
} 

/* input effect */
.input-container {
    position: relative;
    border: 1px solid #CBD5DD; 
    border-radius: 8px;  
}

.input-error {
    border: 1px solid red;
}

.input {
    box-sizing: border-box; 
    font-size: 16px;
    height: 50px !important;
    outline: 0;
    padding: 12px;
    width: 100%;
    border: none !important;  
    border-radius: 8px;  
    background: transparent;
    color: #000;    
}

textarea.input {
    height: 100px !important;
}

.input-error-text {
    color: red;
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: -18px;
}

 

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
input[type="time"]::-webkit-inner-spin-button {
    filter: invert(1);
}

.placeholder {
    color: #B1B1B1;
    left: 12px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 18px;
    margin: 0;
    background-color: #fff;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
}

.input:focus~.placeholder,
.input:not(:placeholder-shown)~.placeholder {
    transform: translateY(-26px) translateX(-22px) scale(0.75);
    padding: 0 10px;
    left: 30px;
    background: #fff;
    font-size: 16px;
}

.input[type="date"] {
    color-scheme: dark;
}
.form-check-input[type=checkbox] {  
    box-shadow: none;
}
.form-check-input:checked[type=checkbox] {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color);
    color: #fff;
} 
 
 

.modal-content {
    border-radius: 15px;
    border: none;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}
.accordion-item:first-of-type { 
    border-radius: 0;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #db5274; 
}
.accordion-button:not(.collapsed)::after {
    transition: all 0.5s;
    filter: brightness(0) invert(1);
} 

.footer-area{
    background-color: var(--primary-color);
}
.footer-social img{
    width: 60px;
}
.footer-link-ul {
    display: flex;
    justify-content: center;
        flex-wrap: wrap;
    gap: 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-social ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.main-bg-image {
    margin-bottom: 100px;
}
.footer-bg-image,
.main-bg-image {
    width: 100%;
    display: flex;
}
.footer-bg-image img,
.main-bg-image img {
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    position: relative;
}


.product-price{
    display: flex;
    align-items: center;
    gap: 25px;
}
.offer-price{
    text-decoration: line-through;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}
.main-price{
    color: black;
    font-size: 35px;
    font-weight: 600;
}

.product_data {
    height: 52px; 
    display: inline-flex;
    align-items: center;  
}
.product_data span {
    font-size: 22px;
    font-weight: 600;
    margin-right: 15px;
}
.product_data a {
    cursor: pointer;
    height: 32px;
    width: 32px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px !important;
}
.product_data input {
    display: inline-block;
    width: 80px;
    border: none;
    background: transparent;
    font-size: 22px;
    font-weight: 600;
}

.form-box {
    margin-bottom: 40px;
}

.pd-details-title h3 {
    font-size: 24px;
    background: url(../../assets/images/title-stripes.png);
    background-size: cover;
    background-position: left;
    padding-left: 50px;
    margin-bottom: 30px;
}

.order-box{
    border: 1px solid var(--primary-color);
    padding: 25px;
    margin-bottom: 30px; 
}

.order-box p {
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
}

.pd-details .pd-form .form-box .input-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.pd-details .pd-form .form-box .input-item label {
    width: 44%;
    font-size: 18px;
    font-weight: 600;
        margin-bottom: 0;
}
.pd-details .pd-form .form-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.pd-details .pd-form .form-box .input-item .form-control {
    background: transparent;
    border-color: var(--primary-color);
    border-radius: 0;
    height: 38px;
    font-weight: 600;
}

.product-slider-wapper {
    margin-right: 50px;
}
.product-item {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    overflow: hidden;
}
.product-item img{
    width: auto !important;
    text-align: center;
    margin: 0 auto;
}

.about-area{
    background-color: #EFDFBB;
}

.love-story-wapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
}
.love-story-item {
    background: #fff;
    border-radius: 5px;
    padding: 5px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
}
.love-story-content {
    padding: 15px 0;
    text-align: center;
}
.love-story-image img {
    width: 100%;
}


.abouts-title h2 {
    font-size: 24px !important;
    background: url(../../assets/images/title-stripes-center.png);
    background-size: cover;
    background-position: center;
    padding-left: 0;
    margin-bottom: 50px;
}


.variants-area,
.love-story-area {
    margin: 0 30px;
}

.variants-wapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.variants-item {
    background: var(--primary-color);
    border-radius: 15px; 
    overflow: hidden;
    border: 1px solid var(--primary-color);
}
.variants-image img{
    width: 100%;
}
.variants-image video {
    height: 525px;
    width: 100%;
    object-fit: cover;
}

.variants-content {
    position: relative;
    padding-left: 50px;
    padding-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;

}
.variants-content img {
    position: absolute;
    left: 0;
    top: -40px;
    width: 50px;
}
.variants-content p {
    font-size: 11px;
    line-height: normal;
}