
/* ============================================
   BeautyStore - Online Shop CSS
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Root Variables */
:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f8bbd0;
    --secondary: #ff6f00;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray: #f5f5f5;
    --gray-dark: #e0e0e0;
    --text: #333;
    --text-light: #666;
    --white: #ffffff;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader {
    text-align: center;
}

.preloader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-img {
    margin-top: 15px;
}

.preloader-img img {
    max-height: 40px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   HEADER
   ============================================ */
.header-area {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header {
    padding: 15px 0;
}

.menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    max-height: 50px;
}

.main-menu nav ul {
    display: flex;
    gap: 30px;
}

.main-menu nav ul li {
    position: relative;
}

.main-menu nav ul li a {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    padding: 8px 0;
    position: relative;
}

.main-menu nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-menu nav ul li a:hover::after,
.main-menu nav ul li.active a::after {
    width: 100%;
}

.main-menu nav ul li a:hover {
    color: var(--primary);
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.main-menu nav ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 20px !important;
    font-size: 14px !important;
}

.submenu li a:hover {
    background: var(--gray);
    color: var(--primary) !important;
}

/* Hot Badge */
.hot a::before {
    content: 'HOT';
    position: absolute;
    top: -10px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

/* Header Right */
.header-right ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-right ul li a {
    font-size: 18px;
    color: var(--dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.header-right ul li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Menu */
.mobile_menu {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.slider-area {
    position: relative;
    overflow: hidden;
}

.single-slider {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
}

.single-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.hero__caption {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero__caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease;
}

.hero__caption p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 500px;
    animation: fadeInLeft 1s ease 0.3s both;
}

.hero__btn {
    animation: fadeInLeft 1s ease 0.6s both;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.hero__img {
    position: relative;
    z-index: 2;
    animation: bounceIn 1s ease 0.4s both;
}

.hero__img img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-tittle {
    text-align: center;
    margin-bottom: 50px;
}

.section-tittle h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-tittle p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NEW ARRIVALS / PRODUCTS
   ============================================ */
.new-product-area {
    background: var(--gray);
}

.single-new-pro {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding-bottom: 20px;
}

.single-new-pro:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
}

.product-img img {
    max-height: 220px;
    object-fit: contain;
    transition: var(--transition);
}

.single-new-pro:hover .product-img img {
    transform: scale(1.05);
}

.product-caption {
    padding: 20px;
    text-align: center;
}

.product-caption h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-caption h3 a:hover {
    color: var(--primary);
}

.product-caption .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.product-caption .price .old-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Product hover overlay */
.img-cap {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.product-img:hover .img-cap {
    bottom: 0;
}

.favorit-items {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.favorit-items:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   POPULAR ITEMS
   ============================================ */
.popular-items {
    background: var(--white);
}

.single-popular-items {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.single-popular-items:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.popular-img {
    position: relative;
    overflow: hidden;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
}

.popular-img img {
    max-height: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.single-popular-items:hover .popular-img img {
    transform: scale(1.08);
}

.popular-caption {
    padding: 20px;
    text-align: center;
}

.popular-caption h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.popular-caption h3 a:hover {
    color: var(--primary);
}

.popular-caption span {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   GALLERY AREA
   ============================================ */
.gallery-area {
    padding: 0;
}

.single-gallery {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-img {
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.big-img {
    height: 400px;
}

.small-img {
    height: 190px;
}

.single-gallery:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 30, 99, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.single-gallery:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

/* ============================================
   WATCH CHOICE / FEATURED
   ============================================ */
.watch-area {
    background: var(--gray);
}

.watch-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.watch-details p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.choice-watch-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ============================================
   SHOP METHOD
   ============================================ */
.shop-method-area {
    background: var(--white);
    padding: 60px 0;
}

.method-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 50px 30px;
}

.single-method {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.single-method i {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.single-method h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.single-method p {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   VIDEO AREA
   ============================================ */
.video-area {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1596462502278-27bfdd403348?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrap {
    text-align: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(233, 30, 99, 0); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer-area {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-logo img {
    max-height: 45px;
    margin-bottom: 20px;
}

.footer-pera p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-tittle h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-tittle ul li {
    margin-bottom: 12px;
}

.footer-tittle ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-tittle ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-copy-right {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

.footer-copy-right p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-copy-right a {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   SEARCH MODEL
   ============================================ */
.search-model-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-model-box.active {
    display: flex;
}

.search-close-btn {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-close-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.search-model-form input {
    width: 600px;
    max-width: 90vw;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--white);
    color: var(--white);
    font-size: 24px;
    padding: 15px 0;
    outline: none;
}

.search-model-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

/* ============================================
   HERO CAP (Inner Pages)
   ============================================ */
.slider-height2 {
    min-height: 300px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
}

.hero-cap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--white);
    text-align: center;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.product-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.nav-tabs {
    border: none;
    display: flex;
    gap: 10px;
}

.nav-tabs .nav-link {
    border: none;
    background: var(--gray);
    color: var(--text);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.select-this select {
    border: 1px solid var(--gray-dark);
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    font-size: 14px;
    cursor: pointer;
}

/* ============================================
   PRODUCT DETAILS
   ============================================ */
.product_image_area {
    padding: 80px 0;
}

.product_img_slide {
    margin-bottom: 40px;
}

.single_product_img {
    text-align: center;
    background: var(--gray);
    border-radius: var(--radius);
    padding: 40px;
}

.single_product_img img {
    max-height: 400px;
    object-fit: contain;
}

.single_product_text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.single_product_text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product_count_area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.product_count {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.product_count_item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.product_count_item:hover {
    background: var(--primary);
    color: var(--white);
}

.product_count_item.input-number {
    width: 50px;
    background: var(--white);
    border: none;
    text-align: center;
    font-weight: 600;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart_area {
    padding: 80px 0;
}

.cart_area .table th {
    border: none;
    font-weight: 600;
    color: var(--dark);
    padding: 15px;
}

.cart_area .table td {
    vertical-align: middle;
    padding: 20px 15px;
}

.cart_area .media img {
    max-width: 80px;
    border-radius: var(--radius-sm);
}

.cart_area .media-body p {
    font-weight: 500;
    color: var(--dark);
}

.cupon_text input {
    border: 1px solid var(--gray-dark);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    outline: none;
    margin-right: 10px;
}

.shipping_box {
    background: var(--gray);
    padding: 25px;
    border-radius: var(--radius);
}

.shipping_box ul li {
    margin-bottom: 10px;
}

.shipping_box select,
.shipping_box input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    outline: none;
}

.checkout_btn_inner {
    margin-top: 30px;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout_area {
    padding: 80px 0;
}

.returning_customer,
.cupon_area {
    background: var(--gray);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.check_title h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.check_title h2 a {
    color: var(--primary);
}

.billing_details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    outline: none;
}

.order_box {
    background: var(--gray);
    padding: 30px;
    border-radius: var(--radius);
}

.order_box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-dark);
}

.order_box ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-dark);
}

.order_box ul li a {
    color: var(--text);
}

.order_box .list_2 li:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.payment_item {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.radion_btn input {
    margin-right: 10px;
}

.radion_btn label {
    font-weight: 600;
    cursor: pointer;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login_part {
    padding: 80px 0;
}

.login_part_text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 40px;
    border-radius: var(--radius);
    color: var(--white);
    height: 100%;
    display: flex;
    align-items: center;
}

.login_part_text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.login_part_text p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.login_part_form {
    padding: 40px;
}

.login_part_form_iner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
}

.creat_account {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

.creat_account input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.lost_pass {
    color: var(--primary);
    font-size: 14px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.media-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.media-body p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-details {
    padding: 80px 0;
}

.about-details-cap h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-details-cap p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog_area {
    padding: 80px 0;
}

.blog_item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.blog_item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog_item_img {
    position: relative;
}

.blog_item_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog_item_date {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.blog_item_date h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.blog_item_date p {
    font-size: 12px;
    text-transform: uppercase;
}

.blog_details {
    padding: 40px 30px 30px;
}

.blog_details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.blog_details h2 a:hover {
    color: var(--primary);
}

.blog-info-link {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-dark);
}

.blog-info-link li a {
    color: var(--text-light);
    font-size: 14px;
}

.blog-info-link li a:hover {
    color: var(--primary);
}

/* Sidebar */
.blog_right_sidebar {
    padding-left: 20px;
}

.single_sidebar_widget {
    background: var(--gray);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.widget_title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

/* ============================================
   SUBSCRIBE
   ============================================ */
.subscribe_part {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.subscribe_part_content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.subscribe_part_content p {
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe_form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.subscribe_form input {
    flex: 1;
    padding: 14px 25px;
    border: none;
    border-radius: 30px;
    outline: none;
    font-size: 15px;
}

.subscribe_form .btn {
    background: var(--dark);
    border-color: var(--dark);
}

.subscribe_form .btn:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gray-dark);
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.page-link:hover,
.page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero__caption h1 {
        font-size: 36px;
    }

    .hero__img {
        display: none;
    }

    .section-tittle h2 {
        font-size: 28px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }

    .blog_right_sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero__caption h1 {
        font-size: 28px;
    }

    .single-slider {
        min-height: 450px;
    }

    .product-btn {
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe_form {
        flex-direction: column;
    }

    .method-wrapper .row {
        flex-direction: column;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animations */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   CART BADGE
   ============================================ */
.cart-badge {
    position: relative;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid var(--success);
}

/* Product badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--success);
}

.product-badge.sale {
    background: var(--danger);
}

/* Stars rating */
.rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Category pills */
.category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.category-pill {
    padding: 8px 20px;
    background: var(--gray);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.category-pill:hover,
.category-pill.active {
    background: var(--primary);
    color: var(--white);
}

/* Quick view button */
.quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--white);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 5;
}

.product-img:hover .quick-view {
    transform: translate(-50%, -50%) scale(1);
}

/* Brand section */
.brand-area {
    padding: 50px 0;
    background: var(--gray);
}

.brand-item {
    text-align: center;
    padding: 20px;
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
}

/* Testimonials */
.testimonial-area {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
}

.testimonial-item {
    text-align: center;
    padding: 30px;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary);
}

.testimonial-item p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-item h4 {
    font-size: 18px;
    font-weight: 600;
}

.testimonial-item span {
    font-size: 14px;
    opacity: 0.7;
}
