/* Import Roboto font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Set default font family */
body {
    font-family: 'Roboto', sans-serif;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    padding: 0;
}

.brand-logo {
    height: 40px;
    width: auto;
}

/* Navigation Links */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-icon {
    position: relative;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 1.25rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.header-icon:hover {
    color: var(--accent-color);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

/* Search Modal */
.search-input-group {
    position: relative;
}

.search-input-group input {
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1.125rem;
}

.btn-search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .brand-logo {
        height: 32px;
    }

    .navbar-toggler {
        padding: 0.25rem;
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .header-icons {
        margin-top: 1rem;
        justify-content: center;
        border-top: 1px solid #e5e5e5;
        padding-top: 1rem;
    }

    .navbar-collapse {
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        margin-bottom: 0;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* Dropdown Menus */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: #1a1a1a;
    font-weight: 500;
    border-radius: 0.25rem;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--accent-color);
}

/* Animation */
@media (min-width: 992px) {
    .navbar-collapse {
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        transition: transform 0.3s ease;
    }
}

/* Modern Header Styles */
:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #ff385c;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --header-height: 80px;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

.announcement-content p {
    margin: 0;
}

/* Main Header */
.header-main {
    background: var(--secondary);
    height: var(--header-height);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

/* Logo */
.header-logo img {
    height: 40px;
    width: auto;
}

/* Desktop Navigation */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    padding: 8px;
}

/* Mobile Menu */
.offcanvas {
    max-width: 300px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mobile-nav li a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-search {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-account {
    padding: 15px;
}

.account-info h6 {
    margin-bottom: 15px;
}

.account-info ul {
    list-style: none;
    padding: 0;
}

.account-info ul li a {
    display: block;
    padding: 8px 0;
    color: var(--text-color);
    text-decoration: none;
}

.btn-logout {
    width: 100%;
    padding: 8px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--text-color);
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .search-bar {
        display: none;
    }

    .nav-wrapper {
        padding: 0 15px;
    }

    .logo-img {
        height: 32px;
    }

    .action-btn {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Auth Pages Styling */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 2rem 0;
}

.auth-card {
    background: #ffffff;
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: none;
    border: 1px solid #e5e5e5;
}

.auth-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #666666;
    margin-bottom: 2rem;
}

.auth-form .form-control {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 0.75rem 1rem;
    height: auto;
    font-size: 0.95rem;
}

.auth-form .form-control:focus {
    border-color: #000000;
    box-shadow: none;
}

.auth-form .form-floating label {
    padding: 0.75rem 1rem;
    color: #666666;
}

.auth-form .form-floating > .form-control:focus ~ label,
.auth-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #666666;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.auth-form .form-check-input:checked {
    background-color: #000000;
    border-color: #000000;
}

.forgot-password {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-form .btn-primary {
    background-color: #000000;
    border-color: #000000;
    padding: 0.75rem;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form .btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e5e5e5;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background-color: #ffffff;
    padding: 0 1rem;
    color: #666666;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-login .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    color: #000000;
    background-color: #ffffff;
}

.social-login .btn:hover {
    background-color: #f8f9fa;
    border-color: #000000;
}

.signup-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 2rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .social-login {
        gap: 0.5rem;
    }
    
    .social-login .btn {
        width: 35px;
        height: 35px;
    }
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--footer-border);
    background: white;
}

.copyright, .credits {
    margin: 0;
    color: var(--footer-link);
    font-size: 0.9rem;
}

.credits a {
    color: var(--footer-link-hover);
    text-decoration: none;
}

.credits a:hover {
    text-decoration: underline;
}

/* Mobile Footer */
.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    z-index: 1000;
}

.mobile-nav-item {
    text-align: center;
}

.mobile-nav-item a {
    color: #000;
    text-decoration: none;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-item i {
    font-size: 16px;
    margin-bottom: 4px;
}

.mobile-nav-item a.active {
    color: var(--primary);
}

.modern-footer {
    --footer-bg: #f8f9fa;
    --footer-text: #2d3436;
    --footer-link: #636e72;
    --footer-link-hover: #000;/*--footer-link-hover: #0056b3;*/
    --footer-border: #e9ecef;
    background-color: var(--footer-bg);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
}

    .newsletter-section h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .newsletter-section p {
        opacity: 0.9;
        margin-bottom: 2rem;
    }

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 0.75rem 1.5rem;
    border-radius: 0px;
    border: none;
}

.newsletter-form .btn {
    padding: 0.75rem 2rem;
    border-radius:0px;
    /*border-radius: 0 30px 30px 0;*/
    background: #2d3436;
    border: none;
}

/* Main Footer */
.footer-main {
    padding: 5rem 0;
    background: var(--footer-bg);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 1.5rem;
}

.company-desc {
    color: var(--footer-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.widget-title {
    color: var(--footer-text);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

    .widget-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 40px;
        height: 2px;
        background: var(--footer-link-hover);
    }

/* Contact Info */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--footer-link);
}

    .contact-item i {
        width: 24px;
        color: var(--footer-link-hover);
        margin-right: 10px;
    }

    .contact-item a {
        color: var(--footer-link);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-item a:hover {
            color: var(--footer-link-hover);
        }

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--footer-link);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--footer-link-hover);
            transform: translateX(5px);
        }

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f2f6;
    color: var(--footer-text);
    transition: all 0.3s ease;
    text-decoration:none;
}

    .social-link:hover {
        transform: translateY(-3px);
    }

    .social-link.facebook:hover {
        background: #1877f2;
        color: white;
    }

    .social-link.instagram:hover {
        background: #e4405f;
        color: white;
    }

    .social-link.twitter:hover {
        background: #1da1f2;
        color: white;
    }

    .social-link.linkedin:hover {
        background: #0077b5;
        color: white;
    }

/* App Downloads */
.app-downloads {
    margin-top: 2rem;
}

    .app-downloads h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: var(--footer-text);
    }

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-btn img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-btn:hover img {
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0;
    }

    .newsletter-section {
        padding: 3rem 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }

    .product-card {
        position: relative;
        background: #fff;
        max-height: 100%;
        height: 100%;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.action-buttons {
    display: flex;
    gap: 8px;
}
.product-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.product-price {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mobile-banner-image {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}

.btn-wishlist {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #ff385c;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-wishlist:hover {
    background: #ff385c;
    color: #fff;
    transform: scale(1.1);
}

/* Blog Section Styles */
.blog-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.blog-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.blog-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.08);*/
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 5px;
    right: 5px;
    /*background: rgba(255,255,255,0.95);*/
    padding: 5px 12px;
    border-radius: 0px;
    font-size: 0.60rem;
    font-weight: 500;
    color: #000;
    /*color: #2d3436;*/
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-title a {
    color: #2d3436;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent);
}

.blog-excerpt {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #e62e4d;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }

    .blog-section h2 {
        font-size: 1.75rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }
}

/* Blog Details Page Styles */
.blog-details-wrapper {
    background: #f8f9fa;
    min-height: 100vh;
}

.blog-breadcrumb {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.blog-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}

.blog-breadcrumb .breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: var(--accent);
}

.blog-breadcrumb .breadcrumb-item.active {
    color: var(--primary);
}

/* Blog Post Styles */
.blog-post {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-post-header {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.blog-post-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-meta {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.blog-post-meta i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.02);
}

.blog-post-content {
    padding: 2rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h1, 
.blog-post-content h2, 
.blog-post-content h3, 
.blog-post-content h4, 
.blog-post-content h5, 
.blog-post-content h6 {
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-post-footer {
    padding: 2rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-label {
    color: var(--primary);
    font-weight: 500;
}

.tag-link {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--accent);
    color: #fff;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    color: var(--primary);
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    /*border-bottom: 2px solid var(--gray-200);*/
}

.search-form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.search-form .form-control {
    border: 1.5px solid var(--gray-200);
    padding: 0.75rem 1rem;
}

.search-form .btn {
    background: var(--accent);
    border: none;
    padding: 0.75rem 1.5rem;
}

.search-form .btn:hover {
    background: #e62e4d;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.recent-post-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .post-thumb img {
    transform: scale(1.05);
}

.post-info {
    flex: 1;
}

.post-info .post-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.post-info .post-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-info .post-title a:hover {
    color: var(--accent);
}

.post-info .post-date {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .blog-sidebar {
        position: static;
    }

    .blog-post-title {
        font-size: 1.75rem;
    }

    .blog-post-header,
    .blog-post-content,
    .blog-post-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .blog-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-share {
        width: 100%;
        justify-content: space-between;
    }

    .recent-post-item {
        flex-direction: column;
    }

    .post-thumb {
        width: 100%;
        height: 200px;
    }
}



.product-details-container {
    padding: 0;
    background: #fff;
}

.product-images-section {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #fff;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-action {
    position: absolute;
    top: 20px;
    right: 20px;
}

.btn-wishlist {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-wishlist:hover {
        background: #fff;
        transform: scale(1.1);
    }

.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.discount-tag {
    background: #ff4646;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-add-to-cart, .btn-buy-now {
    padding: 10px 10px;
    border: none;
    border-radius: 0px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-details-tabs {
    margin-top: 40px;
}

.accordion {
    margin: 0;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.accordion-button {
    padding: 20px 0;
    font-weight: 500;
    color: #333;
    background: none;
}

    .accordion-button:not(.collapsed) {
        background: none;
        color: #333;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-button::after {
        background-size: 1.25rem;
        transition: transform 0.2s ease-in-out;
    }

    .accordion-button:not(.collapsed)::after {
        transform: rotate(-180deg);
    }

.accordion-body {
    padding: 0 0 20px 0;
    font-size: 14px;
    color: #666;
}

.pincode-checker {
    display: flex;
    gap: 10px;
}

    .pincode-checker input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .pincode-checker button {
        padding: 10px 20px;
        background: #333;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

.product-meta {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.delivery-info {
    display: flex;
    gap: 30px;
}

.delivery-time, .stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.in-stock {
    color: #2ecc71;
}

.out-of-stock {
    color: #e74c3c;
}

.product-variants {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.variant-group {
    margin-bottom: 15px;
}

.variant-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-option {
    padding: 6px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

    .variant-option:hover {
        border-color: #333;
    }

    .variant-option.selected {
        background: #000;
        color: #fff;
        border-color: #000;
    }

@media (max-width: 768px) {
    .product-images-section {
        position: relative;
        height: auto;
    }

    .product-info-section {
        height: auto;
        padding: 20px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }
}


/* Product Details Page Styles */
.product-details-page {
    /*padding: 40px 0;*/
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.main-image-container {
    border: 1px solid #eee;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .main-image-container img,
    .main-image-container video {
        width: 100%;
        height: auto;
        display: block;
    }

.thumbnail-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .thumbnail-slider::-webkit-scrollbar {
        display: none;
    }

.thumbnail {
    flex: 0 0 80px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .thumbnail:hover {
        border-color: #000;
    }

    .thumbnail img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        border-radius: 4px;
    }

.product-info {
    padding: 0 20px;
}

.product-categories {
    margin-bottom: 15px;
}

    .product-categories a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        margin-right: 10px;
    }

.product-price-section {
    margin: 20px 0;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Variant Selection */
.product-options {
    margin: 25px 0;
}

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

    .option-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
    }

    .option-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        color: #333;
        background-color: #000;
        cursor: pointer;
        transition: border-color 0.3s ease;
    }

        .option-group select:hover {
            border-color: #000;
        }

        .option-group select:focus {
            outline: none;
            border-color: #000;
        }

.quantity-selector {
    margin: 25px 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 150px;
}

    .quantity-controls button {
        width: 40px;
        height: 40px;
        border: 1px solid #ddd;
        background: #fff;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
    }

        .quantity-controls button:hover {
            background: #f5f5f5;
        }

    .quantity-controls input {
        width: 60px;
        height: 40px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }

.action-buttons button {
    flex: 1;
    padding: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0px;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: none;
}

    .btn-primary:hover {
        background: #333;
    }

.btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

    .btn-secondary:hover {
        background: #f5f5f5;
    }



.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

    .accordion-item:last-child {
        border-bottom: none;
    }

.accordion-button {
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    background: none;
    box-shadow: none;
    position: relative;
}

    .accordion-button:not(.collapsed) {
        color: #000;
        background: none;
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg);
    }

.accordion-body {
    padding: 20px 0;
    color: #666;
    line-height: 1.6;
}

    /* Reviews Section in Accordion */
    .accordion-body .reviews-summary {
        margin-bottom: 30px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .accordion-body .rating-overview {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .accordion-body .average-rating {
        text-align: center;
    }

    .accordion-body .rating-number {
        font-size: 36px;
        font-weight: 600;
        color: #000;
        margin-bottom: 5px;
    }

    .accordion-body .rating-stars {
        color: #ffd700;
        margin-bottom: 5px;
    }

    .accordion-body .total-reviews {
        color: #666;
        font-size: 14px;
    }

    .accordion-body .review-item {
        padding: 20px 0;
        border-bottom: 1px solid #eee;
    }

        .accordion-body .review-item:last-child {
            border-bottom: none;
        }

    .accordion-body .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .accordion-body .reviewer-name {
        font-weight: 500;
        color: #000;
    }

    .accordion-body .review-date {
        color: #666;
        font-size: 14px;
    }

    .accordion-body .review-content {
        color: #333;
        line-height: 1.6;
    }

    .accordion-body .pincode-check {
        margin-bottom: 30px;
    }

    .accordion-body .pincode-check-form {
        display: flex;
        gap: 10px;
        margin: 15px 0;
    }

    .accordion-body .pincode-input {
        flex: 1;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
    }

    .accordion-body .check-pincode-btn {
        padding: 12px 24px;
        background: #000;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .accordion-body .check-pincode-btn:hover {
            background: #333;
        }

    .accordion-body .pincode-result {
        margin-top: 15px;
    }

    .accordion-body .shipping-details {
        margin-top: 30px;
    }

        .accordion-body .shipping-details h4 {
            margin-bottom: 15px;
            color: #000;
        }

        .accordion-body .shipping-details ul {
            list-style: none;
            padding: 0;
        }

        .accordion-body .shipping-details li {
            padding: 8px 0;
            color: #666;
            position: relative;
            padding-left: 20px;
        }

            .accordion-body .shipping-details li::before {
                content: '•';
                position: absolute;
                left: 0;
                color: #000;
            }

@media (max-width: 767px) {
    .accordion-button {
        padding: 15px 0;
        font-size: 16px;
    }

    .accordion-body {
        padding: 15px 0;
    }

        .accordion-body .rating-overview {
            flex-direction: column;
            gap: 15px;
        }

        .accordion-body .pincode-check-form {
            flex-direction: column;
        }

        .accordion-body .check-pincode-btn {
            width: 100%;
        }
}



.cart-page {
    background-color: #f8f9fa;
    min-height: 80vh;
}

.cart-item {
    border: 1px solid #e9ecef;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cart-item-image {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.product-name {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.quantity-selector span {
    min-width: 24px;
    text-align: center;
}

.remove-item {
    color: #212529;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.remove-item:hover {
    color: #dc3545;
    transform: scale(1.1);
}

.btn-dark:hover {
    background-color: #000;
    border-color: #000;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-color: #212529;
    color: #212529;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #212529;
    color: #fff;
    transform: translateY(-2px);
}

.cart-summary {
    border: 1px solid #e9ecef;
    border-radius: 0px;
}

.empty-cart {
    color: #212529;
}

.empty-cart i {
    opacity: 0.5;
}

.form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: #212529;
    box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.25);
}

.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
    text-align: center;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Add SweetAlert2 custom styles */
.swal2-popup {
    border-radius: 12px !important;
}

.swal2-title {
    color: #2c3e50 !important;
    font-weight: 600 !important;
}

.swal2-html-container {
    color: #6c757d !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: none !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
}

.swal2-cancel {
    background: #6c757d !important;
    border: none !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
}

.swal2-confirm:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%) !important;
}

.swal2-cancel:hover {
    background: #5a6268 !important;
}

/* Cart Page Mobile Enhancements */
@media (max-width: 767.98px) {
    .cart-page {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 1rem;
    }

    .cart-item {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transform: translateY(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cart-item:active {
        transform: scale(0.98);
    }

    .cart-item-image {
        max-height: 100px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .cart-item-image:active {
        transform: scale(1.05);
    }

    .product-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .quantity-selector {
        background: #f8f9fa;
        padding: 0.5rem;
        border-radius: 8px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .quantity-selector .btn {
        width: 32px;
        height: 32px;
        background: white;
        border: 1px solid #dee2e6;
        color: #212529;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    .quantity-selector .btn:active {
        background: #e9ecef;
        transform: scale(0.95);
    }

    .quantity-selector span {
        font-weight: 600;
        color: #2c3e50;
        min-width: 28px;
    }

    .price {
        background: #f8f9fa;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .price span {
        font-weight: 700;
        color: #2c3e50;
    }

    .remove-item {
        background: #f8f9fa;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .remove-item:active {
        background: #dc3545;
        color: white;
        transform: scale(0.95);
    }

    .cart-summary {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border-radius: 0px;
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .cart-summary h4 {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 1.25rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .cart-summary h4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: #212529;
        border-radius: 2px;
    }

    .cart-summary .btn {
        height: 48px;
        letter-spacing: 0.5px;
        border-radius: 0px;
        transition: all 0.3s ease;
    }

    .cart-summary .btn:active {
        transform: scale(0.98);
    }

    .cart-summary .btn-dark {
        background: linear-gradient(135deg, #212529 0%, #000 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .cart-summary .btn-outline-dark {
        border-width: 2px;
        background: transparent;
    }

    .cart-summary .btn-outline-dark:active {
        background: #212529;
        color: white;
    }

    .promo-code .form-control {
        height: 48px;
        border-radius: 8px;
        border: 2px solid #dee2e6;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .promo-code .form-control:focus {
        border-color: #212529;
        box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.1);
    }

    .promo-code .btn {
        height: 48px;
        border-radius: 8px;
        font-weight: 600;
    }

    .empty-cart {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 0px;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .empty-cart i {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .empty-cart h3 {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .empty-cart p {
        color: #6c757d;
        margin-bottom: 1.5rem;
    }

    .empty-cart .btn {
        height: 48px;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-radius: 0px;
        background: linear-gradient(135deg, #212529 0%, #000 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Additional small screen optimizations */
@media (max-width: 575.98px) {
    .cart-item {
        padding: 1rem !important;
    }

    .cart-item-image {
        max-height: 80px;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .price {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .cart-summary {
        padding: 1.25rem;
    }

    .cart-summary h4 {
        font-size: 1.1rem;
    }

    .empty-cart {
        padding: 1.5rem;
    }

    .empty-cart i {
        font-size: 3rem;
    }

    .empty-cart h3 {
        font-size: 1.25rem;
    }
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* Add a nice loading animation for cart updates */
.cart-updating {
    position: relative;
    pointer-events: none;
}

.cart-updating::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.cart-updating::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid #212529;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Checkout Page Styles */
.checkout-page-wrapper {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.checkout-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.checkout-billing-details-wrap {
    background: #fff;
    padding: 32px;
    border-radius: 0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.billing-form-wrap {
    margin-top: 24px;
}

.single-input-item {
    margin-bottom: 20px;
}

.single-input-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4a4a4a;
}

.single-input-item input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.single-input-item input:focus {
    border-color: #1a1a1a;
    outline: none;
}

.single-input-item .text-danger {
    font-size: 12px;
    margin-top: 4px;
}

/* Saved Address Cards */
.saved-address-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.saved-address-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.saved-address-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.saved-address-card span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.saved-address-card p {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.5;
}

.saved-address-card .btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.saved-address-card .btn-sqr {
    background: #1a1a1a;
    color: #fff;
    border: none;
}

.saved-address-card .btn-sqr:hover {
    background: #333;
}

.saved-address-card .bg-danger {
    background: #dc3545 !important;
}

.saved-address-card .bg-danger:hover {
    background: #c82333 !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-page-wrapper {
        padding: 24px 0;
    }

    .checkout-billing-details-wrap {
        padding: 24px;
    }

    .checkout-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .saved-address-card {
        padding: 16px;
    }

    .saved-address-card h3 {
        font-size: 15px;
    }

    .saved-address-card span,
    .saved-address-card p {
        font-size: 13px;
    }
}

.checkout-container {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}


.breadcrumb-item.active {
    color: #212529;
}

.card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.payment-option {
    padding: 1.25rem;
    border: 1px solid #dee2e6;
    border-radius: 0px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.payment-option:hover {
    background-color: #f8f9fa;
}

.payment-option:last-child {
    margin-bottom: 0;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
}


.form-check-label {
    font-size: 1rem;
    color: #212529;
    margin-left: 0.5rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    padding: 1rem;
    font-weight: 500;
    color: #212529;
    background-color: #f8f9fa;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #212529;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.accordion-body {
    padding: 1.25rem;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(129, 216, 208, 0.25);
}

.btn-outline-dark {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #212529;
    border-color: #212529;
}

.order-details {
    padding: 1rem 0;
}

.order-details > div {
    margin-bottom: 0.75rem;
    color: #6c757d;
}

.order-details > div:last-child {
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    color: #212529;
    font-weight: 600;
}

.text-success {
    color: #28a745 !important;
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 1rem 0;
    }
    
    .card-body {
        padding: 1rem !important;
    }
    
    .payment-option {
        padding: 1rem;
    }
    
    .btn-dark {
        padding: 0.875rem;
    }
    
    .order-details {
        padding: 0.75rem 0;
    }
}

/* Address Edit Page Styles */
.address-edit-page {
    padding: 40px 0;
    background-color: #f8f8f8;
    min-height: 100vh;
}

.page-header {
    margin-bottom: 30px;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumb-item a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #000000;
}

.breadcrumb-item.active {
    color: #000000;
}

.account-sidebar {
    background: #ffffff;
    padding: 20px;
    height: fit-content;
}

.address-form-container {
    background: #ffffff;
    padding: 30px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #000000;
    font-size: 13px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 13px;
    color: #000000;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #000000;
    box-shadow: none;
    outline: none;
}

.form-control::placeholder {
    color: #999999;
    font-size: 13px;
}

.validation-message {
    color: #ff385c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-actions {
    margin-top: 30px;
    text-align: right;
}

.btn-primary {
    background-color: #000000;
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    color: #ffffff;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #333333;
}

.form-row {
    margin: 0 -10px;
}

.form-row > [class*="col-"] {
    padding: 0 10px;
}

@media (max-width: 768px) {
    .address-edit-page {
        padding: 20px 0;
    }
    
    .page-header {
        padding: 0 15px;
    }
    
    .page-header h1 {
        font-size: 20px;
    }
    
    .address-form-container {
        padding: 20px;
    }
    
    .form-row {
        margin: 0 -5px;
    }
    
    .form-group {
        padding: 0 5px;
        margin-bottom: 15px;
    }

    .btn-primary {
        width: 100%;
        padding: 10px 15px;
    }
}