/**
 * Dokan Elementor Widgets Styles
 * Version: 1.0.0
 */

/* ===== GENERAL STYLES ===== */
.dew-no-vendor {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #6c757d;
}

.dew-no-products {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #6c757d;
}

/* Dokan Elementor Widgets - Store Header Widget */

/* Main Container */
.dew-store-header {
    background: #ffffff;
    padding: 40px;
    font-family: 'Times New Roman', serif;
    position: relative;
    overflow: hidden;
}

.dew-store-header-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.dew-store-header-wrapper.dew-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.dew-store-header-wrapper.dew-single-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Left Column - Graphics and Info */
.dew-store-header-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Graphics Container */
.dew-graphics-container {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Avatar Container */
.dew-avatar-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D4B08C;
    box-shadow: 0 4px 15px rgba(212, 176, 140, 0.3);
    background: #ffffff;
}

.dew-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.dew-avatar:hover {
    transform: scale(1.05);
}

/* Fingerprint Graphics */
.dew-fingerprint-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background-color: #D4D6D8;
    border-radius: 50%;
    opacity: 0.8;
    background-image:
            radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(0,0,0,0.1) 0%, transparent 50%);
    z-index: 1;
}

.dew-fingerprint-2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-color: #D4B08C;
    border-radius: 50%;
    opacity: 0.9;
    background-image:
            radial-gradient(circle at 25% 25%, rgba(255,255,255,0.4) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(0,0,0,0.1) 0%, transparent 50%);
    z-index: 2;
}

/* Signature */
.dew-signature {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    z-index: 3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Info List */
.dew-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.dew-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dew-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #D4B08C;
    line-height: 1.4;
}

.dew-value {
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #2C3E50;
    line-height: 1.4;
}

/* Right Column - Biography */
.dew-store-header-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Bio Section */
.dew-bio-section {
    position: relative;
    z-index: 2;
}

.dew-bio-heading {
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #D4B08C;
    margin-bottom: 20px;
    line-height: 1.4;
}

.dew-bio-text {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #2C3E50;
    line-height: 1.6;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Background Fingerprint for Bio */
.dew-bio-section::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: #D4B08C;
    border-radius: 50%;
    opacity: 0.1;
    background-image:
            radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(0,0,0,0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Social Section */
.dew-social-section {
    margin-top: 20px;
}

.dew-social-list {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dew-social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #D4B08C;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dew-social-list li a:hover {
    background-color: #2C3E50;
    transform: translateY(-2px);
}

.dew-social-list li a i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dew-store-header {
        padding: 20px;
    }

    .dew-store-header-wrapper.dew-two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dew-graphics-container {
        height: 150px;
    }

    .dew-avatar {
        width: 100px;
        height: 100px;
    }

    .dew-fingerprint-1 {
        width: 80px;
        height: 80px;
    }

    .dew-fingerprint-2 {
        width: 60px;
        height: 60px;
        bottom: 10px;
        right: 10px;
    }

    .dew-signature {
        font-size: 2rem;
    }

    .dew-label,
    .dew-value {
        font-size: 0.9rem;
    }

    .dew-bio-heading {
        font-size: 1.1rem;
    }

    .dew-bio-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dew-store-header {
        padding: 15px;
    }

    .dew-store-header-wrapper {
        gap: 20px;
    }

    .dew-graphics-container {
        height: 120px;
    }

    .dew-avatar {
        width: 80px;
        height: 80px;
    }

    .dew-fingerprint-1 {
        width: 60px;
        height: 60px;
    }

    .dew-fingerprint-2 {
        width: 40px;
        height: 40px;
    }

    .dew-signature {
        font-size: 1.5rem;
    }

    .dew-info-list {
        gap: 10px;
    }

    .dew-label,
    .dew-value {
        font-size: 0.8rem;
    }

    .dew-bio-heading {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .dew-bio-text {
        font-size: 0.8rem;
    }

    .dew-social-list {
        gap: 10px;
    }

    .dew-social-list li a {
        width: 35px;
        height: 35px;
    }

    .dew-social-list li a i {
        font-size: 14px;
    }
}

/* No Vendor State */
.dew-store-header.dew-no-vendor {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Additional Utility Classes */
.dew-text-center {
    text-align: center;
}

.dew-text-left {
    text-align: left;
}

.dew-text-right {
    text-align: right;
}

/* Animation for fingerprint graphics */
@keyframes dew-fingerprint-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.dew-fingerprint-1,
.dew-fingerprint-2 {
    animation: dew-fingerprint-float 4s ease-in-out infinite;
}

.dew-fingerprint-2 {
    animation-delay: 2s;
}

/* Hover effects */
.dew-store-header:hover .dew-fingerprint-1,
.dew-store-header:hover .dew-fingerprint-2 {
    animation-play-state: paused;
}

/* Print styles */
@media print {
    .dew-store-header {
        background: white !important;
        color: black !important;
        padding: 20px !important;
    }

    .dew-fingerprint-1,
    .dew-fingerprint-2 {
        display: none;
    }

    .dew-signature {
        color: black !important;
        text-shadow: none !important;
    }
}

/* ===== DOKAN STORE CAROUSEL WIDGET ===== */

/* Carousel Container */
.category-list-wrap {
    position: relative;
    padding: 20px 0;
}

.seller-items {
    position: relative;
    overflow: hidden;
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

/* Swiper Pagination Dots */
.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #D4B08C;
    transform: scale(1.2);
}

/* Product Slides */
.swiper-slide {
    padding: 10px;
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }

    .swiper-button-next {
        right: 5px;
    }

    .swiper-button-prev {
        left: 5px;
    }
}

/* ===== STORE PROFILE WIDGET ===== */
.dew-store-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dew-store-profile:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dew-store-profile-avatar img {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    transition: transform 0.3s ease;
}

.dew-store-profile-avatar img:hover {
    transform: scale(1.05);
}

.dew-store-profile-info {
    flex: 1;
}

.dew-store-profile-name {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.dew-store-profile-store-name {
    margin: 0;
    font-size: 16px;
    color: #6c757d;
    font-style: italic;
}

/* ===== STORE BANNER WIDGET ===== */
.dew-store-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dew-store-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dew-store-banner:hover img {
    transform: scale(1.02);
}

.dew-store-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* ===== STORE BIO WIDGET ===== */
.dew-store-bio {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dew-store-bio-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.dew-store-bio-content {
    line-height: 1.6;
    color: #495057;
}

.dew-store-bio-read-more {
    margin-top: 15px;
    color: #007bff;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dew-store-bio-read-more:hover {
    color: #0056b3;
}

/* ===== STORE CONTACT WIDGET ===== */
.dew-store-contact {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dew-store-contact-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.dew-store-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dew-store-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dew-store-contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.dew-store-contact-item a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dew-store-contact-item a:hover {
    color: #007bff;
}

.dew-store-contact-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== STORE SOCIAL WIDGET ===== */
.dew-store-social {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dew-store-social-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.dew-store-social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dew-store-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dew-store-social-link:hover {
    background: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.dew-store-social-icon {
    font-size: 20px;
    transition: color 0.3s ease;
}

.dew-store-social-link:hover .dew-store-social-icon {
    color: #ffffff;
}

/* ===== STORE RATING WIDGET ===== */
.dew-store-rating {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dew-store-rating-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.dew-store-rating-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dew-store-rating-stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
}

.dew-store-rating-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
}

.dew-store-rating-value {
    font-weight: 600;
    font-size: 18px;
}

.dew-store-rating-count {
    color: #6c757d;
    font-size: 14px;
}

/* ===== STORE STATUS WIDGET ===== */
.dew-store-status {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dew-store-status.open {
    border-left: 4px solid #28a745;
}

.dew-store-status.closed {
    border-left: 4px solid #dc3545;
}

.dew-store-status-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.dew-store-status-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dew-store-status-text {
    font-size: 18px;
    font-weight: 500;
}

.dew-store-status.open .dew-store-status-text {
    color: #28a745;
}

.dew-store-status.closed .dew-store-status-text {
    color: #dc3545;
}

/* ===== STORE TABS WIDGET ===== */
.dew-store-tabs {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dew-store-tabs-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.dew-store-tabs-nav-item {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    color: #6c757d;
}

.dew-store-tabs-nav-item:hover {
    background: #e9ecef;
    color: #495057;
}

.dew-store-tabs-nav-item.active {
    background: #ffffff;
    color: #007bff;
    border-bottom-color: #007bff;
}

.dew-store-tabs-content {
    position: relative;
}

.dew-store-tabs-panel {
    display: none;
    padding: 25px;
}

.dew-store-tabs-panel.active {
    display: block;
}

.dew-store-tabs-panel-content {
    line-height: 1.6;
    color: #495057;
}

/* ===== STORE ADDRESS WIDGET ===== */
.dew-store-address {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dew-store-address-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.dew-store-address-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.dew-store-address-icon {
    font-size: 20px;
    color: #6c757d;
    flex-shrink: 0;
    margin-top: 2px;
}

.dew-store-address-details {
    flex: 1;
}

.dew-store-address-line {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.dew-store-address-components {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.dew-store-address-components span:not(:last-child)::after {
    content: ',';
    margin-right: 4px;
}

/* ===== STORE CAROUSEL WIDGET ===== */
.dew-store-carousel {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dew-store-carousel-title {
    margin: 0 0 25px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.dew-store-carousel-swiper {
    position: relative;
    padding: 0 40px;
}

.dew-store-carousel-product {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.dew-store-carousel-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dew-store-carousel-product-image {
    position: relative;
    overflow: hidden;
}

.dew-store-carousel-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dew-store-carousel-product:hover .dew-store-carousel-product-image img {
    transform: scale(1.05);
}

.dew-store-carousel-product-content {
    padding: 15px;
}

.dew-store-carousel-product-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.dew-store-carousel-product-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dew-store-carousel-product-title a:hover {
    color: #007bff;
}

.dew-store-carousel-product-price {
    font-size: 18px;
    font-weight: 600;
    color: #28a745;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #6c757d;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #007bff;
    color: #ffffff;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Swiper Pagination Styles */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #dee2e6;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #007bff;
    transform: scale(1.2);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .dew-store-header-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .dew-store-header-profile {
        order: 1;
    }

    .dew-store-header-info {
        order: 2;
    }

    .dew-store-header-name {
        font-size: 24px;
    }

    .dew-store-header-info-list {
        text-align: left;
    }

    .dew-store-header-social-list {
        justify-content: center;
    }

    .dew-store-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .dew-store-profile-avatar img {
        width: 80px !important;
        height: 80px !important;
    }

    .dew-store-contact-items {
        gap: 10px;
    }

    .dew-store-social-icons {
        justify-content: center;
    }

    .dew-store-rating-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .dew-store-tabs-nav {
        flex-direction: column;
    }

    .dew-store-tabs-nav-item {
        border-bottom: 1px solid #e9ecef;
        border-right: none;
    }

    .dew-store-tabs-nav-item.active {
        border-bottom-color: #007bff;
        border-right: none;
    }

    .dew-store-address-content {
        flex-direction: column;
        text-align: center;
    }

    .dew-store-carousel-swiper {
        padding: 0 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .dew-store-profile-name {
        font-size: 20px;
    }

    .dew-store-profile-store-name {
        font-size: 14px;
    }

    .dew-store-carousel-product-content {
        padding: 12px;
    }

    .dew-store-carousel-product-title {
        font-size: 14px;
    }

    .dew-store-carousel-product-price {
        font-size: 16px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dew-store-profile,
.dew-store-banner,
.dew-store-bio,
.dew-store-contact,
.dew-store-social,
.dew-store-rating,
.dew-store-status,
.dew-store-tabs,
.dew-store-address,
.dew-store-carousel {
    animation: fadeIn 0.6s ease-out;
}

/* ===== PRINT STYLES ===== */
@media print {
    .dew-store-profile,
    .dew-store-banner,
    .dew-store-bio,
    .dew-store-contact,
    .dew-store-social,
    .dew-store-rating,
    .dew-store-status,
    .dew-store-tabs,
    .dew-store-address,
    .dew-store-carousel {
        box-shadow: none;
        border: 1px solid #e9ecef;
    }

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none !important;
    }
}

.slick-prev, .slick-next
{
    background: #C69839 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px !important;
    position: absolute !important;
    top: 40% !important;
    z-index: 10 !important;
    font-size: 20px !important;
}

.slick-prev  {
    left: 0 !important;
}

.slick-next {
    right: 0 !important;
}