/* Custom Modern Design for Flowers & Perfumes Store */
/* Color Palette: #8b6179 (Primary), #ffbd59 (Secondary), Black, White */

/* ==================== CSS Variables ==================== */
:root {
    --primary-color: #8b6179;
    --secondary-color: #ffbd59;
    --primary-dark: #6d4a5e;
    --secondary-dark: #e6a347;
    --primary-light: #a47b8a;
    --secondary-light: #ffc973;
    --text-dark: #000000;
    --text-light: #333333;
    --text-muted: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #000000;
    --border-color: #e1e5e9;
    --shadow-light: 0 2px 8px rgba(139, 97, 121, 0.1);
    --shadow-medium: 0 4px 20px rgba(139, 97, 121, 0.15);
    --shadow-heavy: 0 8px 30px rgba(139, 97, 121, 0.25);
    --gradient-primary: linear-gradient(135deg, #8b6179 0%, #6d4a5e 100%);
    --gradient-secondary: linear-gradient(135deg, #ffbd59 0%, #e6a347 100%);
    --gradient-mixed: linear-gradient(135deg, #8b6179 0%, #ffbd59 100%);
}

/* ==================== Font Imports (Similar to requested fonts) ==================== */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
/* Similar to Le Jour Script */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Similar to Glacial Indifference */

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==================== Typography ==================== */
.font-script {
    font-family: 'Dancing Script', cursive;
}

.font-clean {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

h5 {
    font-size: 1.2rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

.text-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 1.5em;
    color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-white {
    color: var(--bg-white) !important;
}

.text-black {
    color: var(--text-dark) !important;
}

/* ==================== Buttons ==================== */
.btn-custom-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-custom-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--bg-white);
    text-decoration: none;
}

.btn-custom-secondary {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-custom-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--text-dark);
    text-decoration: none;
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Fix for existing button classes */
.cmn--btn,
.button {
    background: var(--gradient-primary) !important;
    color: var(--bg-white) !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--shadow-light) !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
}

.cmn--btn:hover,
.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-medium) !important;
    color: var(--bg-white) !important;
    text-decoration: none !important;
}

/* ==================== Header Styles ==================== */
.header-custom {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-custom.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-top {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-top a:hover {
    color: var(--secondary-color);
}

.navbar-brand {
    font-family: 'Dancing Script', cursive !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    margin: 0 15px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ==================== Hero Section ==================== */
.hero-custom {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(139, 97, 121, 0.9) 0%, rgba(255, 189, 89, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-custom h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-custom .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-custom .btn-hero {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-medium);
}

.hero-custom .btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--primary-color);
}

.hero-custom .btn-hero.secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.hero-custom .btn-hero.secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* Fix for existing slider styles */
.home-slider .banner-slide-item {
    background-size: cover !important;
    background-position: center !important;
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
}

.home-slider .banner-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 97, 121, 0.8) 0%, rgba(255, 189, 89, 0.6) 100%);
    z-index: 1;
}

.banner-wrapper-item {
    position: relative !important;
    z-index: 2 !important;
}

.banner-content {
    color: var(--bg-white) !important;
}

.banner-content h5,
.slide-h5 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
    opacity: 0.9 !important;
}

.banner-content h2,
.banner-content .title {
    font-family: 'Dancing Script', cursive !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.banner-content p {
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
    opacity: 0.95 !important;
}

/* ==================== Product Cards ==================== */
.product-card-custom {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 97, 121, 0.1);
    position: relative;
    height: 100%;
}

.product-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.product-wrapper {
    background: var(--bg-white) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-light) !important;
    transition: all 0.4s ease !important;
    border: 1px solid rgba(139, 97, 121, 0.1) !important;
    position: relative !important;
    height: 100% !important;
}

.product-wrapper:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-heavy) !important;
}

.product-image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px 20px 0 0 !important;
    height: 280px !important;
}

.product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.product-wrapper:hover .product-image img {
    transform: scale(1.08) !important;
}

.product-actions,
.hover-area {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    gap: 10px !important;
}

.product-wrapper:hover .product-actions,
.product-wrapper:hover .hover-area {
    opacity: 1 !important;
}

.product-actions .btn,
.hover-area .button,
.hover-area .add_to_cart_button {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--bg-white) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: var(--shadow-light) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
}

.product-actions .btn:hover,
.hover-area .button:hover,
.hover-area .add_to_cart_button:hover {
    background: var(--primary-color) !important;
    color: var(--bg-white) !important;
    transform: scale(1.1) !important;
}

.product-info {
    padding: 1.8rem 1.5rem !important;
    text-align: center !important;
}

.product-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
}

.product-title a {
    color: var(--text-dark) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.product-title a:hover {
    color: var(--primary-color) !important;
}

.product-price {
    margin-bottom: 1rem !important;
}

.product-price .price,
.product-price ins {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.product-price .old-price,
.product-price del {
    text-decoration: line-through !important;
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    margin-left: 10px !important;
}

.product-rating {
    color: var(--secondary-color) !important;
}

.sale-badge,
.on-sale {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: var(--secondary-color) !important;
    color: var(--text-dark) !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-light) !important;
}

/* ==================== Category Cards ==================== */
.category-card-custom {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 350px;
    background: var(--bg-light);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
}

.category-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.category-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.4s ease !important;
}

.category-card-custom:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(139, 97, 121, 0.8) 0%, rgba(255, 189, 89, 0.6) 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.category-card-custom:hover .category-overlay {
    opacity: 1;
}

.category-title {
    position: absolute !important;
    bottom: 25px !important;
    left: 25px !important;
    right: 25px !important;
    color: var(--bg-white) !important;
    text-align: center !important;
}

.category-title h6 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.category-title a {
    color: var(--bg-white) !important;
    text-decoration: none !important;
}

.category-title span {
    font-size: 0.9rem !important;
    opacity: 0.9 !important;
}

/* ==================== Sections ==================== */
.section-custom {
    padding: 100px 0;
    position: relative;
}

.section-custom.bg-light {
    background: var(--bg-light);
}

.section-custom.bg-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
}

.section-title-custom {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-custom h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-custom h2.script {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--primary-color);
}

.section-title-custom h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-title-custom p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== Newsletter ==================== */
.newsletter-custom {
    background: var(--gradient-mixed);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 0,100"/></svg>');
    background-size: cover;
}

.newsletter-custom .container {
    position: relative;
    z-index: 2;
}

.newsletter-custom h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-custom p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form .form-control {
    flex: 1;
    min-width: 250px;
    border-radius: 30px;
    border: none;
    padding: 16px 25px;
    font-size: 1rem;
    box-shadow: var(--shadow-light);
}

.newsletter-form .btn {
    border-radius: 30px;
    padding: 16px 30px;
    background: var(--bg-white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ==================== Footer ==================== */
.footer-custom {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 30px;
}

.footer-custom .footer-widget h5 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.footer-custom .footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-custom .footer-widget ul li {
    margin-bottom: 0.8rem;
}

.footer-custom .footer-widget ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-custom .footer-widget ul li a:hover {
    color: var(--secondary-color);
}

.footer-custom .social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-custom .social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* ==================== Search Bar ==================== */
.search-custom {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-custom .form-control {
    border-radius: 30px;
    border: 2px solid var(--border-color);
    padding: 16px 60px 16px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.search-custom .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 97, 121, 0.25);
    outline: none;
}

.search-custom .search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-custom .search-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-50%) scale(1.05);
    color: var(--text-dark);
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .hero-custom h1 {
        font-size: 2.5rem;
    }

    .hero-custom .subtitle {
        font-size: 1.1rem;
    }

    .section-title-custom h2 {
        font-size: 2rem;
    }

    .product-image {
        height: 220px !important;
    }

    .category-card-custom {
        height: 280px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .form-control {
        min-width: 100%;
        margin-bottom: 15px;
    }

    .section-custom {
        padding: 60px 0;
    }

    .footer-custom {
        padding: 60px 0 20px;
    }

    .navbar-nav .nav-link {
        margin: 5px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-custom h1 {
        font-size: 2rem;
    }

    .hero-custom .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin: 5px;
    }

    .product-image {
        height: 200px !important;
    }

    .category-card-custom {
        height: 250px;
    }

    .section-custom {
        padding: 40px 0;
    }

    .section-title-custom h2 {
        font-size: 1.8rem;
    }
}

/* ==================== Utility Classes ==================== */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
}

.bg-gradient-mixed {
    background: var(--gradient-mixed) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-medium) !important;
}

.border-radius-custom {
    border-radius: 20px !important;
}

.text-gradient {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== Loading States ==================== */
.loading-custom {
    position: relative;
    overflow: hidden;
}

.loading-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ==================== Cart & Checkout Styles ==================== */
.cart-custom {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
}

.cart-item-custom {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.cart-item-custom:hover {
    box-shadow: var(--shadow-medium);
}

.checkout-custom .form-control {
    border-radius: 15px;
    border: 2px solid var(--border-color);
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.checkout-custom .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 97, 121, 0.25);
}