

/******************************************************************/
/*service section */
/******************************************************************/
.services-section {
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #333;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

/* Hover Effect: Cards lift and shadow deepens */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-box i {
    font-size: 3rem;
    color: #D4AF37; /* Matches your 'Luxury Gold' text */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.read-more {
    color: black;  /*#D4AF37;*/
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}


/******************************************************************/
/* pasley validation style */
/******************************************************************/
input.parsley-success,
select.parsley-success,
textarea.parsley-success{
	color:#468847;
	background-color:#DFF0D8;
	border:1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error{
	color:#B94A48;
	background-color:#F2DEDE;
	border: 1px solid #EED3D7;
}


.parsley-errors-list{
	margin:2px 0 3px;
	padding: 0;
	list-style-type: none;
	font-size: 0.9em;
	line-height: 0.9em;
	opacity: 0;

	transition:all .3s ease-in;
	-o-transition:all .3s ease-in;
	-moz-transition:all .3s ease-in;
	-webkit-transition:all .3s ease-in;
}

.parsley-errors-list.filled{
	opacity: 1;
}

.parsley-type, .parsley-required, .parsley-length, .parsley-checkemail, .parsley-pattern, .parsley-equalto, .parsley-error-message{
	color:#ff0000;
}

/******************************************************************/
/* success modal icon  */
/******************************************************************/
.icon-circle {
  /* Set the background color and add padding to create space around the icon */
  background-color: #059652; /* A shade of green */
  padding: 10px;

  /* Make the icon and background a circle by using border-radius */
  border-radius: 50%;

  /* Ensure the icon is centered perfectly within the circle */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* Set the color of the icon itself to white for contrast */
  color: #ffffff;
}

/******************************************************************/
/* failure modal icon */
/******************************************************************/
.icon-times {
  /* Set the background color and add padding to create space around the icon */
  background-color: #ca0606; 
  padding: 10px;

  /* Make the icon and background a circle by using border-radius */
  border-radius: 50%;

  /* Ensure the icon is centered perfectly within the circle */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* Set the color of the icon itself to white for contrast */
  color: #ffffff;
}


/*******************************************************************/
/* toastr setup */
/******************************************************************/

.toast-custom-color {
    background-color: #060a06; /* A nice green color #4CAF50*/
    opacity: 1 !important; /* Ensure it overrides default opacity settings */
}

/* Optional: Change the color of the progress bar if needed */
.toast-custom-color .toast-progress {
    background-color: #FFF; 
}

/* Optional: Change the color of the close button (the 'x' symbol) */
.toast-custom-color .toast-close-button {
    color: #FFF; 
    text-shadow: none;
}

.toast-success {
    background-color: #28a745; /* Bootstrap's success green */
}

/* Override the default error color globally */
.toast-error {
    background-color: #dc3545; /* Bootstrap's danger red */
}


/* newsletter */
.newsletter-section {
    background: #111; /* Dark professional theme */
    padding: 80px 0;
}

.newsletter-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.badge-new {
    background: #379dd4; /* Your Luxury Gold */
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.newsletter-content h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #aaa;
    font-size: 1.1rem;
}

/* Modern Input Group */
.modern-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px;
    display: flex;
}

.nl-input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    padding-left: 25px;
    box-shadow: none !important;
}

.nl-input::placeholder {
    color: #666;
}

.btn-subscribe {
    background: #379dd4;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #fff;
    transform: scale(1.05);
}

.form-text {
    color: #555;
    display: block;
    margin-top: 15px;
    margin-left: 20px;
}

/* Responsive Tweak */
@media (max-width: 991px) {
    .newsletter-wrapper { 
        padding: 40px 20px; 
        text-align: center; 
        overflow: visible; /* Prevents container from clipping the input */
    }

    .modern-form .input-group { 
        display: flex;
        flex-direction: column; 
        background: transparent; 
        border: none; 
        padding: 0; 
        width: 100%; /* Force the group to span full width */
        gap: 15px;   /* Modern 2026 spacing between input and button */
    }

    .nl-input { 
        display: block !important;
        width: 100% !important;   /* Crucial: ensures it doesn't collapse to "tiny" size */
        min-width: 100% !important; /* Overrides flex-shrink behavior */
        height: 60px !important;    /* Explicit height for touch targets */
        background: rgba(255,255,255,0.08) !important; 
        border: 1px solid rgba(255,255,255,0.2) !important;
        border-radius: 12px;        /* Slightly sharper corners for better mobile tap areas */
        padding: 0 20px !important; /* Ensure text isn't pushed out of view */
        color: #ffffff !important;
        font-size: 16px !important;  /* Prevents iOS from auto-zooming on focus */
    }

    .btn-subscribe {
        width: 100%; /* Make button full width on mobile for better UX */
        height: 60px;
    }
}

/*******************************************************************/
/* pagination  */
/******************************************************************/

.pagination .page-link {
    border-radius: 8px; /* Modern rounded look */
    margin: 0 4px;
    padding: 10px 18px;
    color: #333;
    transition: all 0.2s ease; /* Smooth hover effect */
    border: 1px solid #dee2e6;
    
    height: 40px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    
}

.pagination .page-item.active .page-link {
    background-color: #007bff; /* Your brand primary color */
    border-color: #007bff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.25);
}

.pagination .page-link:hover:not(.active) {
    background-color: #9bc5f0 !important;
    transform: translateY(-1px); /* Subtle 2026 lift effect */
}

/*******************************************************************/
/* cart table */
/******************************************************************/

.qty {
    min-width: 130px; 
    white-space: nowrap;
}


.qty-btn.d-flex {
    overflow: visible !important;
}

@media (max-width: 576px) {
    
    .delete-product-btn {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 10px;
    }
    
    
    .qty-text {
        width: 40px !important;
    }
}

/****************************************************** */
/*  product display styles                              */                      *
/***************************************************** */
  /* 1. Refined Card Edges */
.rounded-xl {
    border-radius: 16px !important;
}

.product-card {
    border: 1px solid #f1f3f5 !important; /* Soft subtle border */
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

/* .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08) !important;
} */

/* 2. Aspect Ratio Box (Ensures all images look uniform) */
.aspect-ratio-box {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: #f8f9fa; /* Light gray for image placeholders */
}

.product-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes different sized images fit the square perfectly */
    transition: transform 0.5s ease;
}

/* 3. Image Hover Effect */
/* .product-card:hover .product-image-main {
    transform: scale(1.08); 
} */

/* 4. Professional "Soft" Shadow for buttons */
.btn-white {
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.favoriteBtn{
    top:12px;
    right:12px;
    width:36px; 
    height:36px; 
    z-index:5; 
    border:none; 
    padding:0;
}

/* 1. Ensure the icon can be transformed */
.favoriteBtn i, 
.favoriteBtn svg {
    display: inline-block; /* Essential: Inline elements cannot be scaled */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    pointer-events: none; /* Prevents the icon from stealing the click event */
}

/* 2. Trigger the scale when the PARENT button is hovered */
.favoriteBtn:hover i, 
.favoriteBtn:hover svg {
    transform: scale(1.25);
    color: #ff4757; /* Optional: Slight color shift for better feedback */
}

/* 3. Add a "Squish" effect on click for a premium feel */
.favoriteBtn:active i, 
.favoriteBtn:active svg {
    transform: scale(0.9);
}

/* fix cart area scroll frozen problem */
/* Ensure the table allows the touch to "pass through" to the body */
.btn-soft-danger {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border: none;
    transition: all 0.2s ease;
}

.btn-soft-danger:hover {
    background-color: #dc3545;
    color: white;
}

.cart-table-area, 
#cart_table_body {
    touch-action: pan-x pan-y; /* Restores horizontal sliding */
    -webkit-overflow-scrolling: touch; 
}

/* 2. The Table Wrapper: This is the "Track" the table slides on */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto !important; /* Forces horizontal scroll to be active */
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
}

/* 3. Prevent the table from shrinking (forces the slide) */
#cart_table_body table,
.table-responsive table {
    min-width: 600px; /* Adjust this: it must be wider than the phone screen to enable sliding */
}

/* 4. Ensure the Delete button doesn't wrap to a new line */
.cart-item-row td {
    white-space: nowrap; 
}







