/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
}

/* CSS Variables */
:root {
    --seagate-blue: #0052cc;
    --seagate-green: #10b981;
    --seagate-light-blue: #eff6ff;
    --discount-orange: #f59e0b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    /* --gray-600: #4b5563; */
    /* --gray-700: #374151; */
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 0.5rem;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background-color: #014098 !important;
    color: #fff !important;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.25rem;
}

.desktop-nav {
    display: none;
    margin-left: 2.5rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link.active {
    color: #fff !important;
    font-weight: 600;
}
.logo a{
  text-decoration: none !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.desktop-search {
    display: none;
}

@media (min-width: 768px) {
    .desktop-search {
        display: block;
    }
}

.search-box {
    position: relative;
}

.search-input {
    width: 16rem;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: var(--seagate-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
}

.cart-btn, .mobile-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    color: var(--gray-600);
    transition: background-color 0.2s;
}

.cart-btn:hover, .mobile-menu-btn:hover {
    background-color: var(--gray-100);
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    border-top: 1px solid var(--gray-200);
    padding: 1rem 0;
    gap: 1rem;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-search .search-input {
    width: 100%;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: var(--gray-500);
}

.breadcrumb-item.active {
    color: var(--gray-900);
    font-weight: 500;
}

.breadcrumb-separator {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--gray-400);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--seagate-blue), #1d4ed8);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #bfdbfe;
    max-width: 48rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
    }
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: block;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .mobile-filter-toggle {
        display: none;
    }
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Sidebar */
.sidebar {
    width: 25%;
    display: none;
}

@media (min-width: 1024px) {
    .sidebar {
        display: block;
    }
}

.sidebar.active {
    display: block;
    width: 100%;
}

.filters-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 6rem;
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
}

.filters-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.product-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.filters-content {
    padding: 1.5rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-options.scrollable {
    max-height: 12rem;
    overflow-y: auto;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}

.filter-checkbox {
    display: none;
}

.checkmark {
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.25rem;
    position: relative;
    transition: all 0.2s;
}

.filter-checkbox:checked + .checkmark {
    background-color: var(--seagate-blue);
    border-color: var(--seagate-blue);
}

.filter-checkbox:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-label {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.filter-count {
    color: var(--gray-500);
}

.filter-separator {
    height: 1px;
    background-color: var(--gray-200);
    margin: 1.5rem 0;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    flex: 1;
}

.btn-primary {
    background-color: var(--seagate-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0043a6;
}

.btn-outline {
    background-color: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    background-color: var(--gray-50);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

/* Product Section */
.product-section {
    flex: 1;
}

/* Toolbar */
.toolbar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.sort-dropdown {
    position: relative;
}

.sort-select {
    appearance: none;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    min-width: 12rem;
}

.sort-icon {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
    pointer-events: none;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 12rem;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.25rem;
    color: var(--white);
}

.badge-discount {
    background-color: var(--discount-orange);
}

.badge-shipping {
    background-color: var(--seagate-green);
}

.product-content {
    padding: 1rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-capacity {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.rating-stars {
    display: flex;
    margin-right: 0.5rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: var(--gray-300);
}

.star.filled {
    color: #fbbf24;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.product-pricing {
    margin-bottom: 1rem;
}

.price-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-original {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.discount-percentage {
    font-size: 0.875rem;
    color: var(--seagate-green);
    font-weight: 600;
}

.product-btn {
    width: 100%;
    background-color: var(--seagate-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 0.5rem;
}

.product-btn:hover {
    background-color: #0043a6;
}

.product-promo {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.product-promo strong {
    color: var(--gray-700);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results-text {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.no-results-description {
    color: var(--gray-500);
    margin-bottom: 1rem;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
/* Footer */
.footer {
    background-color: #014199 !important;
    color: white;
    padding: 3rem 0 2rem 0;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-image {
        font-size: 8rem;
        margin-top: 2rem;
    }
    
    .search-container {
        min-width: auto;
        width: 100%;
        margin: 1rem 0;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .btn-filter {
        white-space: nowrap;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-details {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .products-section {
        padding: 2rem 0;
    }
    
    .product-actions {
        flex-direction: column;
    }
}
.custom-footer {
  background: #014199;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.top-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.top-footer .social,
.top-footer .app-download,
.top-footer .newsletter {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  color: #fff;
}

.top-footer .icons i {
  font-size: 20px;
  margin-right: 10px;
}

.top-footer .app-download img {
  height: 40px;
  margin-right: 10px;
}

.middle-footer {
    color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  cursor: pointer;
}

.bottom-footer {
    color: #fff;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
}
/* Target all PayPal button containers */
div[id^="paypal-button-container-"] {
    position: relative;
    z-index: 1;
}


