
        
        @font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-Thin.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-ExtraLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-Light.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-DemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
        
/* Shop Page Styles */
.shop-page {
    font-family: 'Urbane', sans-serif;
}

/* Main Container */
.shopcontainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header with Filters */
.shopheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.shopnav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
}

.shopnav a {
    text-decoration: none;
    color: #b9b9b9;
    font-weight: 500;
    font-size: 14.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.shopnav a:hover {
    color: #0C1726;
}

.shopnav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0C1726;
    transition: width 0.3s ease;
}

.shopnav a:hover::after {
    width: 100%;
}

/* Modern Dropdown Filter */
.shopfilter-container {
    position: relative;
    display: inline-block;
}

.shopfilters {
    padding: 10px 40px 10px 15px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    min-width: 150px;
    transition: all 0.3s ease;
    font-family: Urbane;
}

.shopfilters:hover {
    border-color: #0C1726;
}

/* Product Card */
.shopproduct {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
     display: flex;
    flex-direction: column;
    height: 100%; /* Ensure consistent height */
}

.shopproduct:hover {
    transform: translateY(-5px);
}

.shopproduct img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Product Content Styles */
.shop-product-content {
padding: 15px;
    font-family: 'Urbane', sans-serif;
    display: grid;
    grid-template-columns: 1fr auto; /* Left content | Right-aligned price */
    gap: 8px;
    align-items: end; /* Align items to bottom */
}

.shop-text-content {
    grid-column: 1;
}

.shopname {
    font-size: 16px; /* Slightly smaller */
    font-weight: 600; /* Semi-bold for product names */
    color: #333;
    margin-bottom: 4px; /* Reduced space */
    text-align: left;
    font-family: 'Urbane', sans-serif;
}

.shopdescription {
    font-size: 13px; /* Smaller description */
    font-weight: 400; /* Regular weight */
    color: #777;
    line-height: 1.4;
    font-family: 'Urbane', sans-serif;
}

.shop-price-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align price to bottom */
    margin-top: auto;
}

.shopprice {
    font-size: 14px;
    font-weight: 500; /* Semi-bold for price */
    color: #0C1726;
    background: #f5f5f5;
    padding: 6px 10px;
    border-radius: 4px;
   grid-column: 2;
    align-self: end; /* Align price to bottom */
    white-space: nowrap; /* Prevent price from wrapping */
}

/* Product Grid Layout Adjustment */
.shopgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}


/* Add to Cart Button */
.shopbutton {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: auto;
}

.shopbutton:hover {
    background-color: #f0f0f0;
}

.shopbutton.added {
    background-color: #0C1726;
    color: white;
}

.shopbutton.added::before {
    content: "✓";
    font-size: 14px;
}



/* Filter Container */
.shopfilter-container {
    position: relative;
    display: inline-block;
    z-index: 10;
}

/* Filter Button */
.shopfilters {
    padding: 10px 15px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.shopfilters:hover {
    border-color: #0C1726;
}

.shopfilters i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

/* Filter Dropdown */
.filter-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.filter-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Filter Sections */
.filter-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

/* Price Range Slider */
.price-range {
    padding: 0 5px;
}

.slider {
    width: 100%;
    margin: 10px 0;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #777;
}

/* Filter Options */
.filter-option {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option input {
    cursor: pointer;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.apply-filters, .reset-filters {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.apply-filters {
    background: #0C1726;
    color: white;
    border: none;
}

.apply-filters:hover {
    background: #1a2a40;
}

.reset-filters {
    background: white;
    border: 1px solid #ddd;
}

.reset-filters:hover {
    border-color: #0C1726;
}

.pt-cntctshop{
        padding-top: 50px;
}

.breadcrumbs_contact{
        margin-bottom: 80px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .shopnav {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .shopnav a {
        font-size: 14px;
    }
    
    .shopgrid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .shopheader {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .shopnav {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .shopfilter-container {
        align-self: flex-end;
    }
}