/* Google Fonts & Base Reset */
/* =========================================================
   Aseamit India - Brand Color Overrides
========================================================= */
:root {
    --primary-magenta: #e3007f;
    /* Logo pink/magenta */
    --brand-coral: #f04e46;
    /* Logo Aseamit Text color */
    --dark-magenta: #9b005f;
    /* Logo dark shade */
    --dark-theme: #222222;
}

/* Base Adjustments */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.fs-7 {
    font-size: 0.75rem;
}

.line-height-sm {
    line-height: 1.2;
}

/* Brand Colors */
.text-magenta {
    color: var(--primary-magenta) !important;
}

.text-coral {
    color: var(--brand-coral) !important;
}

.bg-magenta {
    background-color: var(--primary-magenta) !important;
}

.bg-coral {
    background-color: var(--brand-coral) !important;
}

.bg-dark-theme {
    background-color: var(--dark-theme) !important;
}

/* Borders */
.border-brand-top {
    border-top: 4px solid var(--primary-magenta);
}

.border-magenta {
    border: 2px solid var(--primary-magenta) !important;
}

/* Buttons */
.btn-brand {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
    transition: 0.3s;
}

.btn-brand:hover {
    background-color: var(--dark-magenta);
    border-color: var(--dark-magenta);
}

footer a {
    color: #fff;
}

/* Hover Utilities */
.hover-magenta:hover {
    color: var(--primary-magenta) !important;
}

.hover-text-magenta:hover {
    color: var(--primary-magenta) !important;
    padding-left: 5px;
    transition: 0.3s;
}

.hover-bg-magenta:hover {
    background-color: var(--primary-magenta) !important;
    color: white !important;
    transition: 0.3s;
}

/* Navigation Active State */
.active-nav {
    color: var(--primary-magenta) !important;
    font-weight: 600;
}

/* Remove input focus outline */
.form-control:focus {
    border-color: var(--primary-magenta);
    box-shadow: 0 0 0 0.25rem rgba(227, 0, 127, 0.25);
}

/* Dropdown styling */
.dropdown-menu .dropdown-item {
    transition: 0.3s;
}

/* Top Bar */
.top-bar {
    background-color: #f1f1f1;
    font-size: 13px;
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 15px;
}

.contact-info i {
    color: var(--primary-color);
}

.top-links a {
    margin-left: 15px;
    transition: 0.3s;
}

.top-links a:hover {
    color: var(--primary-color);
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
    background: #fff;
}

.logo h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

/* Search Bar */
.search-bar {
    display: flex;
    width: 40%;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    outline: none;
    font-size: 14px;
}

.search-bar button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 0 25px;
    cursor: pointer;
    transition: 0.3s;
}

.search-bar button:hover {
    background: var(--hover-color);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--text-dark);
}

.badge {
    position: absolute;
    top: -5px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-text {
    font-size: 13px;
    margin-left: 10px;
    line-height: 1.2;
}

.cart-text small {
    display: block;
    color: var(--text-gray);
}

/* Navigation */
.main-nav {
    background: var(--text-dark);
    color: #fff;
}

.nav-inner {
    display: flex;
}

.categories-menu {
    background: var(--primary-color);
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.nav-links li a {
    padding: 15px 20px;
    display: block;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

/* Hero Banner */
.hero-banner {
    background: #fff;
    margin-top: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero-content {
    max-width: 50%;
}

.hero-content .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--text-dark);
}

.hero-image img {
    max-width: 300px;
    border-radius: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Products Section */
main {
    margin-top: 50px;
    margin-bottom: 50px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 24px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.product-tabs button {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    margin-left: 20px;
    cursor: pointer;
    color: var(--text-gray);
    transition: 0.3s;
}

.product-tabs button:hover,
.product-tabs button.active {
    color: var(--primary-color);
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.product-image {
    position: relative;
    margin-bottom: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Hover Action Buttons */
.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.product-actions button:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.product-info p.category {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    cursor: pointer;
}

.product-info h3:hover {
    color: var(--primary-color);
}

.product-info .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* =========================================================
   Recently Added Section (Horizontal Layout)
========================================================= */
.recent-section {
    margin-bottom: 60px;
}

/* Blue underline on Title only */
.recent-title-wrapper {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
    display: flex;
}

.recent-title-wrapper h2 {
    font-size: 22px;
    font-weight: 500;
    color: #222;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: -1px;
}

/* 2x4 Grid */
.recent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
}

/* Horizontal Item Layout */
.recent-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recent-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    border-radius: 5px;
}

.recent-info .brand {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.recent-info h4 {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    line-height: 1.4;
    margin-bottom: 5px;
    cursor: pointer;
}

.recent-info h4:hover {
    color: var(--primary-color);
}

/* Stars & Price */
.recent-info .stars {
    color: #fdd835;
    font-size: 11px;
    margin-bottom: 8px;
}

.recent-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.recent-price .current {
    font-weight: 600;
    color: #222;
}

.recent-price .old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.recent-price .current.discount {
    color: #e53935;
}

/* Red for discounted */
.recent-price .badge {
    background: #e53935;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

/* =========================================================
   Rozer Premium Footer 
========================================================= */
.site-footer {
    background-color: #1a73e8;
    /* Rozer Footer Blue */
    color: #ffffff;
    padding-top: 60px;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    /* Matches the visual weight */
    gap: 30px;
    padding-bottom: 50px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Phone Contact Box */
.footer-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    font-size: 36px;
    color: #fff;
    opacity: 0.8;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
}

.phone-numbers span {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.phone-numbers strong {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}

/* Footer Lists */
.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #e0e0e0;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Slight move on hover */

/* Newsletter Area */
.newsletter-form {
    display: flex;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 13px;
}

.newsletter-form button {
    background: #222;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #000;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    /* Transparent white overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #222;
}

/* Footer Bottom (Copyrights & Payments) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.payment-icons i {
    font-size: 28px;
    margin-left: 10px;
}

/* Back to Top Arrow */
.back-to-top {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* =========================================================
   Hero Slider Section
========================================================= */
.hero-slider-section {
    margin-top: 30px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    /* Each slide takes exactly 100% width */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    box-sizing: border-box;
}

/* Slide Content to match screenshot */
.hero-content {
    max-width: 50%;
}

.hero-content .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    color: var(--text-gray);
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.6;
}

/* Blue Button */
.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    /* Pill shape */
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 99, 209, 0.2);
}

.btn-primary:hover {
    background: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    max-width: 320px;
    border-radius: 10px;
    animation: float 4s ease-in-out infinite;
}

/* Slider Controls (Arrows & Dots) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    transition: 0.3s;
    opacity: 0;
    /* Hide arrows until hover */
}

.slider-container:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 25px;
    /* Makes the active dot look like a pill */
    border-radius: 10px;
}

/* =========================================================
   Shop Page Styles
========================================================= */

/* Breadcrumb Banner */
.breadcrumb-area {
    background-color: #f1f5f9;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-area h1 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.breadcrumb-area ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb-area ul li a {
    transition: 0.3s;
}

.breadcrumb-area ul li a:hover {
    color: var(--primary-color);
}

.breadcrumb-area ul li.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Shop Layout (Sidebar & Main Content) */
.shop-container {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.shop-sidebar {
    width: 25%;
}

.shop-main {
    width: 75%;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

/* Category List */
.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 15px;
    transition: 0.3s;
}

.category-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Price Filter */
.price-filter .slider {
    width: 100%;
    margin-bottom: 15px;
    accent-color: var(--primary-color);
}

.price-filter p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.btn-filter {
    background: var(--text-dark);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-filter:hover {
    background: var(--primary-color);
}

/* Tags List */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list a {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 30px;
    transition: 0.3s;
}

.tag-list a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Shop Toolbar (Sorting) */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.toolbar-left p {
    color: var(--text-gray);
    font-size: 14px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbar-right label {
    font-size: 14px;
    color: var(--text-gray);
}

.toolbar-right select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* Shop Main Grid Adjustments */
/* Since the main area is 75% width, we change the grid to 3 columns instead of 4 */
.shop-page-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-dark);
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* =========================================================
   Single Product Details Page
========================================================= */
.single-product-container {
    margin-bottom: 80px;
}

.product-details-inner {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

/* Left: Image Gallery */
.product-gallery {
    width: 45%;
}

.main-image {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.main-image img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail-images img {
    width: calc(33.33% - 10px);
    height: 100px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.thumbnail-images img.active,
.thumbnail-images img:hover {
    border-color: var(--primary-color);
}

/* Right: Product Info */
.product-info-details {
    width: 55%;
}

.product-title {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-rating .stars {
    color: #fdd835;
    font-size: 14px;
}

.product-rating span {
    color: var(--text-gray);
    font-size: 14px;
}

.product-price {
    margin-bottom: 25px;
}

.product-price .current-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-right: 15px;
}

.product-short-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

/* Add to Cart Area */
.product-actions-form {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    height: 45px;
}

.quantity-selector button {
    background: #fff;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-dark);
    transition: 0.3s;
}

.quantity-selector button:hover {
    background: #f1f1f1;
}

.quantity-selector input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    outline: none;
}

.quantity-selector input::-webkit-inner-spin-button {
    display: none;
}

.btn-add-to-cart {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-add-to-cart:hover {
    background: var(--text-dark);
}

.btn-wishlist {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-wishlist:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Meta Info & Social Share */
.product-meta p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.product-meta a {
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s;
}

.product-meta a:hover {
    color: var(--primary-color);
}

.social-share {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-share span {
    font-weight: 600;
    color: var(--text-dark);
}

.social-share a {
    color: var(--text-gray);
    font-size: 16px;
    transition: 0.3s;
}

.social-share a:hover {
    color: var(--primary-color);
}

/* Description Tabs */
.product-tabs-section {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tab-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.tab-content ul {
    padding-left: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* =========================================================
   About & Contact Page Helpers
========================================================= */
.tracking-wide {
    letter-spacing: 2px;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
}

/* =========================================================
   Home Page Extensions (Bootstrap Modifiers)
========================================================= */

/* Hero Slider Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Category Banners */
.category-banner {
    height: 220px;
    transition: 0.3s;
    cursor: pointer;
}

.category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    transition: 0.3s;
}

.category-banner:hover img {
    transform: scale(1.05);
    transition: transform 0.5s;
}

.category-banner:hover .category-overlay {
    background: linear-gradient(to top, rgba(227, 0, 127, 0.8), rgba(227, 0, 127, 0.2));
}

/* Aseamit Magenta Overlay */

/* Bootstrap Product Cards */
.product-card-bs {
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card-bs:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* Product Image Hover Overlay */
.product-action-overlay {
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-bs:hover .product-action-overlay {
    opacity: 1;
}

.product-action-overlay .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card-bs:hover .product-action-overlay .btn {
    transform: translateY(0);
}

/* Object Fit Utilities */
.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }

    .category-banner {
        height: 180px;
    }

    .carousel-item {
        height: 300px !important;
    }
}

/* =========================================================
   Login / Register Page Styles
========================================================= */

/* Custom Tabs Styling */
.nav-pills .nav-link {
    color: #555;
    background-color: #f8f9fa;
    /* Light Gray default */
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.nav-pills .nav-link:hover {
    color: var(--primary-magenta);
    background-color: #f1f1f1;
}

.nav-pills .nav-link.active {
    background-color: #fff !important;
    /* White background */
    color: var(--primary-magenta) !important;
    /* Magenta Text */
    border-bottom: 3px solid var(--primary-magenta);
    /* Magenta bottom border */
    box-shadow: none;
}

/* Input Group Icon Styling */
.input-group-text {
    border-color: #dee2e6;
    /* Standard Bootstrap border color */
}

/* Remove focus blue glow and replace with magenta */
.form-control:focus,
.form-check-input:focus {
    border-color: var(--primary-magenta);
    box-shadow: 0 0 0 0.25rem rgba(227, 0, 127, 0.15);
}

.form-check-input:checked {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
}

a {
    text-decoration: none;
    color: gray;
}