/* Carousel Styles - Exact Copy from Original Template */

/* CSS Variables like original template */
:root {
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --primaryColor: #C9A961;
  --secondaryColor: #f34f3f;
}

/* Remove focus outlines and unwanted effects */
*:focus,
*:active,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

a:focus,
a:active,
button:focus,
button:active,
.btn:focus,
.btn:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove any decorative lines or borders that might appear */
.default__button,
.feture__section__button .default__button {
    text-decoration: none !important;
    border-image: none !important;
    background-image: none !important;
    background-clip: padding-box !important;
}

.default__button:before,
.default__button:after,
.feture__section__button .default__button:before,
.feture__section__button .default__button:after {
    content: none !important;
    display: none !important;
}

/* Ensure clean button rendering */
.default__button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ensure text inside buttons is always visible */
.feture__section__button .default__button,
.feture__section__button .default__button * {
    color: white !important;
}

.feture__section__button .default__button:hover,
.feture__section__button .default__button:hover * {
    color: white !important;
    background: #C9A961 !important;
}

.feture__section__button .default__button:focus,
.feture__section__button .default__button:active,
.feture__section__button .default__button:focus *,
.feture__section__button .default__button:active * {
    color: white !important;
}

/* Override any inherited text colors */
.default__button span,
.default__button a,
.default__button i {
    color: inherit !important;
}

/* Force golden background on hover for all default buttons */
.default__button:hover {
    background: #C9A961 !important;
}

/* Reset any custom styles that might interfere */
.feature__slider__active {
    position: relative;
}

/* Multiple carousel support */
.feature__slider__active:not(.slick-initialized) {
    display: block;
}

.feature__slider__active.slick-initialized {
    display: block;
}

/* Use original template styles exactly */
.grid__wraper {
    margin-bottom: 30px;
}

.grid__wraper:hover .grid__wraper__icon {
    opacity: 1;
    visibility: visible;
    top: 70%;
}

.grid__wraper:hover .secondary__image {
    opacity: 1;
    visibility: visible;
}

.grid__wraper__img {
    position: relative;
}

.grid__wraper__img img {
    width: 100%;
    border-radius: 15px;
}

.grid__wraper__img__inner {
    position: relative;
}

.grid__wraper__img__inner .secondary__image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.grid__wraper__icon {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 99;
}

.grid__wraper__icon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.grid__wraper__icon ul li a {
    height: 45px;
    width: 45px;
    background: var(--whiteColor);
    color: var(--blackColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
    .grid__wraper__icon ul li a {
        height: 30px;
        width: 30px;
        font-size: 12px;
    }
}

.grid__wraper__icon ul li a:hover {
    background: #C9A961;
    color: white;
    transform: scale(1.1);
}

.grid__wraper__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.grid__wraper__badge span {
    font-size: 12px;
    background-color: var(--whiteColor);
    color: var(--blackColor);
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 767px) {
    .grid__wraper__badge span {
        font-size: 10px;
    }
}

.grid__wraper__badge span.sold__out {
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
}

.grid__wraper__info {
    padding: 15px 10px 0;
    text-align: center;
}

.grid__wraper__info h3 {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .grid__wraper__info h3 {
        font-size: 14px;
    }
}

.grid__wraper__price {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
}

.grid__wraper__price del {
    font-size: 14px;
    margin-left: 0;
    margin-right: 8px;
    color: #999;
    opacity: 0.6;
}

.grid__wraper__price span {
    color: #C9A961;
    font-weight: 600;
    font-size: 16px;
}

/* Carousel arrows - using original template style */
.feature__slider__active .prev_class,
.feature__slider__active .next_class {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #C9A961;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    border: none;
    outline: none;
}

.feature__slider__active .prev_class:hover,
.feature__slider__active .next_class:hover {
    background: #283519;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 53, 25, 0.4);
}

.feature__slider__active .prev_class {
    left: -25px;
}

.feature__slider__active .next_class {
    right: -25px;
}

.feature__slider__active .prev_class i,
.feature__slider__active .next_class i {
    font-size: 16px;
}

/* Responsive arrows */
@media (max-width: 1200px) {
    .feature__slider__active .prev_class {
        left: -15px;
    }
    
    .feature__slider__active .next_class {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .feature__slider__active .prev_class,
    .feature__slider__active .next_class {
        width: 40px;
        height: 40px;
    }
    
    .feature__slider__active .prev_class i,
    .feature__slider__active .next_class i {
        font-size: 14px;
    }
    
    .feature__slider__active .prev_class {
        left: -10px;
    }
    
    .feature__slider__active .next_class {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .feature__slider__active .prev_class,
    .feature__slider__active .next_class {
        width: 35px;
        height: 35px;
    }
    
    .feature__slider__active .prev_class i,
    .feature__slider__active .next_class i {
        font-size: 12px;
    }
    
    .feature__slider__active .prev_class {
        left: -5px;
    }
    
    .feature__slider__active .next_class {
        right: -5px;
    }
}

/* Gift badge for packs */
.grid__wraper__gift__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.gift__badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.gift__badge i {
    font-size: 10px;
}

/* Stats styling */
.grid__wraper__stats {
    margin-top: 8px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}

.grid__wraper__stats small {
    color: #666;
    font-size: 12px;
}

/* Section title */
.section__title {
    margin-bottom: 50px;
}

.section__title h2 {
    color: #283519;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 32px;
}

.section__title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

/* Button styling */
.feture__section__button {
    margin-top: 50px;
}

.feture__section__button .default__button {
    background: #C9A961;
    color: white !important;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #C9A961;
    display: inline-block;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
}

.feture__section__button .default__button::before,
.feture__section__button .default__button::after {
    display: none !important;
}

.feture__section__button .default__button:hover {
    background: #C9A961;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
    outline: none !important;
    border: 2px solid #C9A961;
}

.feture__section__button .default__button:focus,
.feture__section__button .default__button:active,
.feture__section__button .default__button:visited {
    background: #C9A961;
    color: white !important;
    outline: none !important;
    box-shadow: none !important;
    border: 2px solid #C9A961;
    border-radius: 25px;
    text-decoration: none;
}

.feture__section__button .default__button:focus:hover,
.feture__section__button .default__button:active:hover {
    background: #C9A961;
    color: white !important;
    outline: none !important;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
    border: 2px solid #C9A961;
    border-radius: 25px;
}

/* Ensure container has proper overflow for arrows */
.feture__section .container {
    position: relative;
    overflow: visible;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .feture__section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .feture__section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Global button fixes */
.default__button,
.btn,
button {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 25px !important;
    position: relative;
}

.default__button::before,
.default__button::after,
.btn::before,
.btn::after,
button::before,
button::after {
    display: none !important;
    content: none !important;
}

.default__button:focus,
.default__button:active,
.btn:focus,
.btn:active,
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 25px !important;
}

/* Fix for Bootstrap button focus states */
.btn:focus,
.btn.focus {
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 25px !important;
}

.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus {
    box-shadow: none !important;
    border-radius: 25px !important;
    outline: none !important;
}

/* Additional rounded button styles */
.default__button {
    border-radius: 25px !important;
    transition: all 0.3s ease;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    color: white !important;
}

.default__button:hover {
    border-radius: 25px !important;
    color: white !important;
}

.default__button:focus,
.default__button:active {
    color: white !important;
}

.default__button:visited {
    color: white !important;
}

/* Ensure all buttons have rounded corners */
button,
.btn,
input[type="button"],
input[type="submit"] {
    border-radius: 25px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Remove any pseudo-elements that might cause lines */
*::before,
*::after {
    box-sizing: border-box;
}

.default__button *::before,
.default__button *::after {
    display: none !important;
}